Skip to content

Commit

Permalink
chore: fix error message in MessageDispatcher (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
desmond committed Jan 29, 2020
1 parent 453d304 commit c618bc8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -152,7 +152,7 @@ private void forget() {
public void onFailure(Throwable t) {
logger.log(
Level.WARNING,
"MessageReceiver failed to processes ack ID: " + ackId + ", the message will be nacked.",
"MessageReceiver failed to process ack ID: " + ackId + ", the message will be nacked.",
t);
pendingNacks.add(ackId);
forget();
Expand Down

0 comments on commit c618bc8

Please sign in to comment.