diff --git a/test/StressTests/Server/Documents/ETL/Olap/LocalTestsStress.cs b/test/StressTests/Server/Documents/ETL/Olap/LocalTestsStress.cs index 51aea456c30d..e193d8b018ad 100644 --- a/test/StressTests/Server/Documents/ETL/Olap/LocalTestsStress.cs +++ b/test/StressTests/Server/Documents/ETL/Olap/LocalTestsStress.cs @@ -2,7 +2,6 @@ using System.Collections.Generic; using System.Diagnostics; using System.IO; -using System.Threading; using System.Threading.Tasks; using Orders; using Parquet; @@ -221,7 +220,7 @@ public async Task AfterDatabaseRestartEtlShouldRespectRunFrequency() Assert.True(result.Success); Assert.False(result.Disabled); - var database = await WaitForDatabaseToUnlockAsync(store, timeout: TimeSpan.FromMilliseconds(1000)); + var database = await WaitForDatabaseToUnlockAsync(store, timeout: TimeSpan.FromSeconds(10)); Assert.NotNull(database); var etlDone2 = WaitForEtl(database, (n, statistics) => statistics.LoadSuccesses != 0);