Fixed - empty result of BLMPOP command causes

IndexOutOfBoundsException.
pull/4843/head
Nikita Koksharov 2 years ago
parent 58b41efb6d
commit 7e8bae7590

@ -259,6 +259,9 @@ public interface RedisCommands {
new ObjectDecoder(StringCodec.INSTANCE.getValueDecoder()) {
@Override
public Object decode(List parts, State state) {
if (parts.isEmpty()) {
return null;
}
return Collections.singletonMap(parts.get(0), parts.get(1));
}
},

Loading…
Cancel
Save