Fix SRP exception on select in transaction

DATAREDIS-220
This commit is contained in:
Jennifer Hickey
2013-07-15 17:49:16 -07:00
parent 4f5eb9748a
commit 39970609ba
6 changed files with 22 additions and 1 deletions

View File

@@ -631,6 +631,7 @@ public class SrpConnection implements RedisConnection {
try {
if (isPipelined()) {
pipeline(pipeline.select(dbIndex));
return;
}
client.select(dbIndex);
} catch (Exception ex) {