Fixed - RSet.distributedIterator() method throws script error #4017

pull/4031/head
Nikita Koksharov 3 years ago
parent 10751fce40
commit 52ac9663cf

@ -158,7 +158,7 @@ public class RedissonSet<V> extends RedissonExpirable implements RSet<V>, ScanIt
+ "else "
+ "cursor = 0;"
+ "end;"
+ "if start_index == -1 then "
+ "if cursor == -1 then "
+ "return {0, {}}; "
+ "end;"
+ "local result; "

@ -278,7 +278,7 @@ public class RedissonSetMultimapValues<V> extends RedissonExpirable implements R
+ "else"
+ " cursor = 0;"
+ "end;"
+ "if start_index == -1 then "
+ "if cursor == -1 then "
+ "return {0, {}}; "
+ "end;"
+ "local result; "

Loading…
Cancel
Save