Skip to content

Commit

Permalink
Merge pull request #222 from hiddenalpha/FixDeadQueues-20241121
Browse files Browse the repository at this point in the history
SDCISA-18049: Fix dead queues
  • Loading branch information
hiddenalpha authored Nov 21, 2024
2 parents 866863b + 99f36d2 commit 430f94d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/swisspush/redisques/RedisQues.java
Original file line number Diff line number Diff line change
Expand Up @@ -578,6 +578,7 @@ private void registerActiveQueueRegistrationRefresh() {
}
@Override public boolean onError(Throwable ex, Iterator<Map.Entry<String, QueueState>> iter) {
if (log.isWarnEnabled()) log.warn("TODO error handling", exceptionFactory.newException(ex));
onPeriodicDone.run();
return false;
}
@Override public void onDone(Iterator<Map.Entry<String, QueueState>> iter) {
Expand Down

0 comments on commit 430f94d

Please sign in to comment.