Skip to content

Commit

Permalink
Incorrect type used for publish message on OutboxMessageProcessor
Browse files Browse the repository at this point in the history
  • Loading branch information
tbd-develop committed Feb 14, 2025
1 parent e698986 commit 453108b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private async Task PublishMessage(IOutboxMessage message, CancellationToken canc
var type = message.Event.GetType();

var method =
typeof(OutboxMonitoringService).GetMethod(nameof(PublishEvent),
typeof(OutboxMessageProcessor).GetMethod(nameof(PublishEvent),
BindingFlags.NonPublic | BindingFlags.Instance);

if (method is null)
Expand Down

0 comments on commit 453108b

Please sign in to comment.