}
log.debug("Pool from JNDI: " + pool);
if (pool == null) {
JedisPoolConfig config = new JedisPoolConfig();
pool = new JedisPool(config, redisHostname, redisPort, redisTimeout, redisPassword);
}
if (!disableListeners) {
Executors.newSingleThreadExecutor().execute(eventListenerThread);