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 98f8c48 commit 71bc06cCopy full SHA for 71bc06c
src/Ydb.Sdk/test/Ydb.Sdk.Ado.Tests/YdbDataSourceTests.cs
@@ -233,7 +233,7 @@ public async Task ExecuteInTransactionAsync_WhenTLI_ThenRetriesUntilSuccess(int
233
CommandText = $"UPDATE {tableName} SET count = @count + 1 WHERE id = 1",
234
Parameters = { new YdbParameter { Value = count, ParameterName = "count" } }
235
}.ExecuteNonQueryAsync();
236
- }));
+ }, new YdbRetryPolicyConfig { FastBackoffBaseMs = 20 }));
237
}
238
239
await Task.WhenAll(tasks);
0 commit comments