Skip to content

Commit 8688300

Browse files
fix linter
1 parent 6bb7655 commit 8688300

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Ydb.Sdk/src/Ado/Session/ImplicitSessionSource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private bool TryAcquireLease()
4343
internal void ReleaseLease()
4444
{
4545
Interlocked.Decrement(ref _activeLeaseCount);
46-
46+
4747
if (Volatile.Read(ref _isDisposed) == 1 && _activeLeaseCount == 0)
4848
_drainedTcs.TrySetResult();
4949
}

src/Ydb.Sdk/src/Ado/Session/PoolingSessionSource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,8 @@ public async ValueTask DisposeAsync()
306306
"This may indicate a connection leak or suspended operations.");
307307
}
308308
}
309-
310-
private Exception ObjectDisposedException =>
309+
310+
private Exception ObjectDisposedException =>
311311
new ObjectDisposedException(nameof(PoolingSessionSource<T>), "The session source has been closed.");
312312
}
313313

0 commit comments

Comments
 (0)