Fixed - output full exception stacktrace if unable connect to sentinel server. #2699

pull/3417/head
Nikita Koksharov 4 years ago
parent cdd3d28bfb
commit 4178f2e4fe

@ -224,7 +224,7 @@ public class SentinelConnectionManager extends MasterSlaveConnectionManager {
usePassword = true;
return;
} catch (RedisConnectionException e) {
log.warn("Can't connect to sentinel server. {}", e.getMessage());
log.warn("Can't connect to sentinel server", e);
} catch (Exception e) {
// skip
} finally {

Loading…
Cancel
Save