Hi,
After 10 minutes (BTW - non configurable) of no connection to Redis server
|
protected static final int RECONNECT_ATTEMPTS = 120; // Total time: 10 min |
The worker process is terminated with uncaught exception
|
this.jedis.srem(key(WORKERS), this.name); |
when trying to reach Redis in the
finally block after
poll() method ended with shutdown request.
Jedis is not connected and throwing uncaught error. Not sure that this is the expected behavior, however I guess the outcome is the same :) ...
Hi,
After 10 minutes (BTW - non configurable) of no connection to Redis server
jesque/src/main/java/net/greghaines/jesque/worker/WorkerImpl.java
Line 66 in c6653ed
The worker process is terminated with uncaught exception
jesque/src/main/java/net/greghaines/jesque/worker/WorkerImpl.java
Line 227 in c6653ed
when trying to reach Redis in the
finallyblock afterpoll()method ended with shutdown request.Jedis is not connected and throwing uncaught error. Not sure that this is the expected behavior, however I guess the outcome is the same :) ...