Просмотр исходного кода

Fix issues with exception handling after disconnect

release/3.x.x
Christian Kratky 7 лет назад
Родитель
Сommit
50800b1d44
1 измененных файлов: 10 добавлений и 0 удалений
  1. +10
    -0
      MQTTnet.Core/Client/MqttClient.cs

+ 10
- 0
MQTTnet.Core/Client/MqttClient.cs Просмотреть файл

@@ -352,6 +352,11 @@ namespace MQTTnet.Core.Client
}
catch (MqttCommunicationException exception)
{
if (cancellationToken.IsCancellationRequested)
{
return;
}

MqttTrace.Warning(nameof(MqttClient), exception, "MQTT communication exception while sending/receiving keep alive packets.");
await DisconnectInternalAsync().ConfigureAwait(false);
}
@@ -388,6 +393,11 @@ namespace MQTTnet.Core.Client
}
catch (MqttCommunicationException exception)
{
if (cancellationToken.IsCancellationRequested)
{
return;
}

MqttTrace.Warning(nameof(MqttClient), exception, "MQTT communication exception while receiving packets.");
await DisconnectInternalAsync().ConfigureAwait(false);
}


Загрузка…
Отмена
Сохранить