Skip to content

Commit

Permalink
Fix for error when restarting a durable receiver and encountering fai…
Browse files Browse the repository at this point in the history
…lures again. Closes GH-966
  • Loading branch information
jeremydmiller committed Jul 25, 2024
1 parent a073254 commit 8803fa5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Wolverine/Runtime/WorkerQueues/DurableReceiver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@ private async Task deferOneAsync(Envelope envelope)
{
try
{
envelope.OwnerId = _settings.AssignedNodeNumber;
await _inbox.StoreIncomingAsync(envelope);
}
catch (DuplicateIncomingEnvelopeException e)
Expand Down

0 comments on commit 8803fa5

Please sign in to comment.