Browse Source

Increased PR quality

release/3.x.x
1iveowl 7 years ago
committed by GitHub
parent
commit
28d31d0cf5
1 changed files with 9 additions and 9 deletions
  1. +9
    -9
      MQTTnet.Core/Adapter/MqttChannelCommunicationAdapter.cs

+ 9
- 9
MQTTnet.Core/Adapter/MqttChannelCommunicationAdapter.cs View File

@@ -83,7 +83,7 @@ namespace MQTTnet.Core.Adapter
{ {
foreach (var packet in packets) foreach (var packet in packets)
{ {
if (packet == null) continue;
if (packet == null) {continue};


MqttTrace.Information(nameof(MqttChannelCommunicationAdapter), $"TX >>> {packet} [Timeout={timeout}]"); MqttTrace.Information(nameof(MqttChannelCommunicationAdapter), $"TX >>> {packet} [Timeout={timeout}]");


@@ -93,7 +93,7 @@ namespace MQTTnet.Core.Adapter


if (timeout > TimeSpan.Zero) if (timeout > TimeSpan.Zero)
{ {
_sendTask = _sendTask.ContinueWith(c => _channel.SendStream.FlushAsync(cancellationToken).TimeoutAfter(timeout), cancellationToken);// _channel.SendStream.FlushAsync(cancellationToken).TimeoutAfter(timeout);//.ConfigureAwait(false);
_sendTask = _sendTask.ContinueWith(c => _channel.SendStream.FlushAsync(cancellationToken).TimeoutAfter(timeout), cancellationToken).ConfigureAwait(false);
} }
else else
{ {
@@ -105,17 +105,17 @@ namespace MQTTnet.Core.Adapter
await _sendTask; // configure await false generates stackoverflow await _sendTask; // configure await false generates stackoverflow


} }
catch (TaskCanceledException ex)
catch (TaskCanceledException)
{ {
throw ex;
throw;
} }
catch (MqttCommunicationTimedOutException ex)
catch (MqttCommunicationTimedOutException)
{ {
throw ex;
throw;
} }
catch (MqttCommunicationException ex)
catch (MqttCommunicationException)
{ {
throw ex;
throw;
} }
catch (Exception exception) catch (Exception exception)
{ {
@@ -190,4 +190,4 @@ namespace MQTTnet.Core.Adapter
return new ReceivedMqttPacket(header, new MemoryStream(body, 0, body.Length)); return new ReceivedMqttPacket(header, new MemoryStream(body, 0, body.Length));
} }
} }
}
}

Loading…
Cancel
Save