Skip to content

Commit

Permalink
fix: give messageid in amqp plugin (#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
aneojgurhem authored Jan 29, 2024
2 parents c5f1f2d + 2090237 commit 3067d78
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Adaptors/Amqp/src/PushQueueStorage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ await messages.ParallelForEach(new ParallelTaskOptions(cancellationToken),
{
Priority = (byte)internalPriority,
},
Properties = new Properties(),
Properties = new Properties
{
MessageId = Guid.NewGuid()
.ToString(),
},
}))
.ConfigureAwait(false);

Expand Down

0 comments on commit 3067d78

Please sign in to comment.