You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
g.add_argument('--token-file', type=FileType(encoding='ascii'), metavar='PATH', help='Path to token file')
162
-
g.add_argument('--ca-file', metavar='PATH', dest='cafile', type=str, help='Path to a file containing the PEM encoding of the server root certificates for tls connections.')
162
+
g.add_argument('--ca-file', metavar='PATH', dest='cafile', type=str, help='Path to a file containing PEM encoded root certificates for tls connections.')
163
163
g.add_argument('--http', action='store_true', help='Use HTTP to connect to blob storage controller instead of GRPC')
164
164
g.add_argument('--http-timeout', type=int, default=5, help='Timeout for blocking socket I/O operations during HTTP(s) queries')
Copy file name to clipboardExpand all lines: ydb/core/driver_lib/run/main.cpp
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,9 @@ int MainRun(const TKikimrRunConfig& runConfig, std::shared_ptr<TModuleFactories>
89
89
configParser.SetupGlobalOpts(opts);
90
90
NMsgBusProxy::TMsgBusClientConfig mbusConfig;
91
91
mbusConfig.ConfigureLastGetopt(opts, "mb-");
92
-
opts.AddLongOption("ca-file", "Path to a file containing the PEM encoding of the server root certificates for tls connections.\n").RequiredArgument("PATH");
92
+
opts.AddLongOption("ca-file", "Path to a file containing PEM encoded root certificates for tls connections.\n").RequiredArgument("PATH");
93
+
opts.AddLongOption("client-cert-file", "Path to a file containing PEM encoded client certificate for tls connections.\n").RequiredArgument("PATH");
94
+
opts.AddLongOption("client-cert-key-file", "Path to a file containing PEM encoded client certificate private key for tls connections.\n").RequiredArgument("PATH");
93
95
NDriverClient::HideOptions(opts);
94
96
opts.AddLongOption('s', "server", "Server address to connect (default $KIKIMR_SERVER)").RequiredArgument("ADDR[:NUM]");
0 commit comments