File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -1496,7 +1496,7 @@ void TClient::CheckShutdown() const
1496
1496
}
1497
1497
}
1498
1498
1499
- TClientPtr CreateClientImpl (
1499
+ TClientContext CreateClientContext (
1500
1500
const TString& serverName,
1501
1501
const TCreateClientOptions& options)
1502
1502
{
@@ -1566,6 +1566,15 @@ TClientPtr CreateClientImpl(
1566
1566
TConfig::ValidateToken (context.Token );
1567
1567
}
1568
1568
1569
+ return context;
1570
+ }
1571
+
1572
+ TClientPtr CreateClientImpl (
1573
+ const TString& serverName,
1574
+ const TCreateClientOptions& options)
1575
+ {
1576
+ auto context = CreateClientContext (serverName, options);
1577
+
1569
1578
auto globalTxId = GetGuid (context.Config ->GlobalTxId );
1570
1579
1571
1580
auto retryConfigProvider = options.RetryConfigProvider_ ;
You can’t perform that action at this time.
0 commit comments