fix bug in client connection establishment, introduced in #82, that caused slow startup (#102)

This commit is contained in:
Sebastian Burckhardt 2022-01-07 07:58:14 -08:00 коммит произвёл GitHub
Родитель 0499ba5c18
Коммит 7644f2e9f1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -446,7 +446,7 @@ namespace DurableTask.Netherite.EventHubs
this.traceHelper.LogDebug("Client{clientId}.ch{index} establishing connection", Client.GetShortId(this.ClientId), index);
// receive a dummy packet to establish connection
// (the packet, if any, cannot be for this receiver because it is fresh)
await receiver.ReceiveAsync(1);
await receiver.ReceiveAsync(1, TimeSpan.FromMilliseconds(1));
}
catch (Exception exception)
{