This commit is contained in:
serkar 2016-11-23 13:06:48 -08:00
Родитель 1ea2d39dab
Коммит 3b7a47214b
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -315,9 +315,8 @@ namespace Microsoft.Azure.EventHubs.Processor
// There already is a pump. Make sure the pump is working and replace the lease.
if (capturedPump.PumpStatus == PartitionPumpStatus.Errored || capturedPump.IsClosing)
{
// The existing pump is bad. Remove it and create a new one.
// The existing pump is bad. Remove it.
await RemovePumpAsync(partitionId, CloseReason.Shutdown).ConfigureAwait(false);
await CreateNewPumpAsync(partitionId, lease).ConfigureAwait(false);
}
else
{