1 second is falling short for the last retry while working with large messages. .NET client is also using 5 second for this buffer.

This commit is contained in:
serkar 2016-12-01 13:44:21 -08:00
Родитель 40d07ae48d
Коммит a8329155d2
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -5,7 +5,7 @@ namespace Microsoft.Azure.EventHubs
{
static class ClientConstants
{
public const int TimerToleranceInSeconds = 1;
public const int TimerToleranceInSeconds = 5;
public const int ServerBusyBaseSleepTimeInSecs = 4;
}
}