Bläddra i källkod

Fix issues with exception handling after disconnect

release/3.x.x
Christian Kratky 7 år sedan
förälder
incheckning
50800b1d44
1 ändrade filer med 10 tillägg och 0 borttagningar
  1. +10
    -0
      MQTTnet.Core/Client/MqttClient.cs

+ 10
- 0
MQTTnet.Core/Client/MqttClient.cs Visa fil

@@ -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);
}


Laddar…
Avbryt
Spara