Skip to content

Commit 208f14d

Browse files
fix test
1 parent f6f3466 commit 208f14d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Ydb.Sdk/test/Ydb.Sdk.Ado.Tests/Session/YdbImplicitStressTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
namespace Ydb.Sdk.Ado.Tests.Session;
77

8+
[Collection("DisableParallelization")]
89
public class YdbImplicitStressTests
910
{
1011
private volatile bool _isDisposed;
@@ -26,7 +27,7 @@ public async Task Dispose_WaitsForAllLeases_AndSignalsOnEmptyExactlyOnce()
2627
var driver = DummyDriver();
2728
var source = new ImplicitSessionSource(driver, TestUtils.LoggerFactory);
2829

29-
var workers = Enumerable.Range(0, 200).Select(async _ =>
30+
var workers = Enumerable.Range(0, 1000).Select(async _ =>
3031
{
3132
await Task.Delay(Random.Shared.Next(0, 5));
3233
try

0 commit comments

Comments
 (0)