atmosphere-extensions icon indicating copy to clipboard operation
atmosphere-extensions copied to clipboard

destroy() shouldn't be call on jedisPool in Broadcaster.destroy()

Open mmhmmh opened this issue 9 years ago • 0 comments

RedisUtil.java

Line 136

if (jedisPool != null) { jedisPool.destroy(); }

Since the jedisPool is shared across all Broadcasters it doesn't make sense to destroy all the pools when one Broadcaster is destoryed.

mmhmmh avatar Jun 04 '15 14:06 mmhmmh