Skip to content

Commit

Permalink
Move log to where it should be.
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddenalpha committed May 21, 2024
1 parent 88c44d4 commit 1003147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/swisspush/redisques/RedisQues.java
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ private enum QueueState {
private final Semaphore redisMonitoringReqLimit;

public RedisQues() {
log.warn("Fallback to legacy behavior and allow up to {} simultaneous requests to redis", Integer.MAX_VALUE);
this.exceptionFactory = newThriftyExceptionFactory();
log.warn("Fallback to legacy behavior and allow up to {} simultaneous requests to redis", Integer.MAX_VALUE);
this.redisMonitoringReqLimit = new Semaphore(Integer.MAX_VALUE);
}

Expand Down

0 comments on commit 1003147

Please sign in to comment.