Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Ev.ServiceBus/Reception/MessageReceptionHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@

ServiceBusMeter.RecordDeliveryCount(
context.Message.DeliveryCount,
executionContext.ClientType,

Check warning on line 94 in src/Ev.ServiceBus/Reception/MessageReceptionHandler.cs

View workflow job for this annotation

GitHub Actions / build

Possible null reference argument for parameter 'clientType' in 'void ServiceBusMeter.RecordDeliveryCount(int value, string clientType, string resourceId, string? payloadTypeId)'.
executionContext.ResourceId,

Check warning on line 95 in src/Ev.ServiceBus/Reception/MessageReceptionHandler.cs

View workflow job for this annotation

GitHub Actions / build

Possible null reference argument for parameter 'resourceId' in 'void ServiceBusMeter.RecordDeliveryCount(int value, string clientType, string resourceId, string? payloadTypeId)'.
executionContext.PayloadTypeId);

ServiceBusMeter.RecordMessageQueueLatency(
Expand All @@ -101,7 +101,7 @@
executionContext.ResourceId,
executionContext.PayloadTypeId);

ServiceBusMeter.IncrementSentCounter(1,
ServiceBusMeter.IncrementReceivedCounter(1,
executionContext.ClientType,
executionContext.ResourceId,
executionContext.PayloadTypeId);
Expand Down
Loading