Skip to content

Commit

Permalink
0.5.4: if final attempt fails fail with reason MaxAttemptsExceeded
Browse files Browse the repository at this point in the history
this is the same behavior as in 0.5.3
  • Loading branch information
judwhite committed Oct 5, 2015
1 parent 4169be6 commit 760dca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NsqSharp/Bus/MessageDistributor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public void HandleMessage(IMessage message)
(
messageInformation,
requeue ? FailedMessageQueueAction.Requeue : FailedMessageQueueAction.Finish,
FailedMessageReason.HandlerException,
requeue ? FailedMessageReason.HandlerException : FailedMessageReason.MaxAttemptsExceeded,
ex
)
);
Expand Down

0 comments on commit 760dca7

Please sign in to comment.