Remove unused variable in TelemetryPublisherAzure.cs

This commit is contained in:
Denis-Cosmin Nutiu 2019-12-07 00:07:24 +02:00
parent 00e6ae34b7
commit 0600d4fde4

View file

@ -129,7 +129,7 @@ namespace NucuCar.Domain.Telemetry
await DeviceClient.SendEventAsync(message, cts.Token);
break;
}
catch (OperationCanceledException e)
catch (OperationCanceledException)
{
retry += 1;
Logger?.LogWarning($"Telemetry not sent! Retry {retry}.");