Fix RJC ping executing synchronously while in pipeline

This commit is contained in:
Jennifer Hickey
2013-04-01 10:28:10 -07:00
parent a421238403
commit 90affe90cb

View File

@@ -378,6 +378,7 @@ public class RjcConnection implements RedisConnection {
try {
if (isPipelined()) {
pipeline.ping();
return null;
}
return session.ping();
} catch (Exception ex) {