Code changes to fix some of the flakey tests. (#4554)

This commit is contained in:
Debdatta Kunda 2024-06-21 09:37:53 -07:00 коммит произвёл GitHub
Родитель 179d9a4930
Коммит 65ce9a942b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -93,8 +93,8 @@ namespace Microsoft.Azure.Cosmos
Assert.IsTrue(getAccountInfoCount > 0, "Callback is not working. There should be at least one call in this time frame.");
getAccountInfoCount = 0;
Thread.Sleep(TimeSpan.FromSeconds(3));
Assert.AreEqual(0, getAccountInfoCount, "There should be no more account calls after the GlobalEndpointManager is disposed");
await Task.Delay(TimeSpan.FromSeconds(5));
Assert.IsTrue(getAccountInfoCount <= 1, "There should be at most 1 call to refresh tied to the background refresh happening while Dispose cancels the internal CancellationToken");
}
finally
{