Skip to content

Commit

Permalink
🐛 Fix re-queue of manual vote result
Browse files Browse the repository at this point in the history
  • Loading branch information
ebullient committed Jun 10, 2024
1 parent 51be6d7 commit fb09668
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public void consumeManualResult(Message<ManualVoteEvent> msg) {
}
// re-queue the message
Log.infof("[%s] voting.consumeManualResult: re-queue event", qc.getLogId());
bus.send(VoteEvent.MANUAL_ADDRESS, msg);
bus.send(VoteEvent.MANUAL_ADDRESS, voteEvent);
}
} catch (Throwable e) {
Log.errorf(e, "[%s] voting.checkVotes: unexpected error", voteEvent.getLogId());
Expand Down

0 comments on commit fb09668

Please sign in to comment.