We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 274a0e3 commit 80ac532Copy full SHA for 80ac532
src/Ydb.Sdk/src/Ado/PoolManager.cs
@@ -35,14 +35,14 @@ CancellationToken cancellationToken
35
: Drivers[settings.GrpcConnectionString] = await settings.BuildDriver();
36
37
ISessionSource newSessionPool;
38
+ driver.RegisterOwner();
39
if (settings.EnableImplicitSession)
40
{
- driver.RegisterOwner();
41
+
42
newSessionPool = new ImplicitSessionSource(driver);
43
}
44
else
45
46
var factory = new PoolingSessionFactory(driver, settings);
47
newSessionPool = new PoolingSessionSource<PoolingSession>(factory, settings);
48
0 commit comments