Skip to content

Commit

Permalink
chore: exchange, queue name change
Browse files Browse the repository at this point in the history
Related: #70
  • Loading branch information
hoa0217 committed Apr 5, 2024
1 parent e7b1944 commit 1946ac6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void processFailedMessagesRequeue(Message failedMessage) {
}
log.info("Retrying message for the {} time", retriesCnt);
failedMessage.getMessageProperties().getHeaders().put(RETRY_COUNT_HEADER, ++retriesCnt);
rabbitTemplate.send("x.reservation",
rabbitTemplate.send("x.alarm.work",
failedMessage.getMessageProperties().getReceivedRoutingKey(), failedMessage);
}
}

0 comments on commit 1946ac6

Please sign in to comment.