pipelined transaction response fix : indentation fix
This commit is contained in:
@@ -26,13 +26,13 @@ public class Pipeline extends MultiKeyPipelineBase {
|
|||||||
for (int i = 0; i < list.size(); i++) {
|
for (int i = 0; i < list.size(); i++) {
|
||||||
Response<?> response = responses.get(i);
|
Response<?> response = responses.get(i);
|
||||||
response.set(list.get(i));
|
response.set(list.get(i));
|
||||||
Object builtResponse;
|
Object builtResponse;
|
||||||
try {
|
try {
|
||||||
builtResponse = response.get();
|
builtResponse = response.get();
|
||||||
} catch (JedisDataException e) {
|
} catch (JedisDataException e) {
|
||||||
builtResponse = e;
|
builtResponse = e;
|
||||||
}
|
}
|
||||||
values.add(builtResponse);
|
values.add(builtResponse);
|
||||||
}
|
}
|
||||||
return values;
|
return values;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user