Skip to content

Commit

Permalink
Merge pull request #419 from Ladicek/show-all-errors-on-cluster-conne…
Browse files Browse the repository at this point in the history
…ction-failure

Redis cluster improvements
  • Loading branch information
Ladicek authored Dec 6, 2023
2 parents d19e984 + 0258b4d commit 998ca95
Show file tree
Hide file tree
Showing 13 changed files with 453 additions and 421 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/vertx/redis/client/Command.java
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public interface Command {
Command SORT = new CommandImpl("sort", -2, false, false, true, new KeyLocator(true, new BeginSearchIndex(1), new FindKeysRange(0, 1, 0)));
Command SORT_RO = new CommandImpl("sort_ro", -2, true, false, true, new KeyLocator(true, new BeginSearchIndex(1), new FindKeysRange(0, 1, 0)));
Command SPOP = new CommandImpl("spop", -2, false, false, false, new KeyLocator(false, new BeginSearchIndex(1), new FindKeysRange(0, 1, 0)));
Command SPUBLISH = new CommandImpl("spublish", 3, null, true, false, new KeyLocator(null, new BeginSearchIndex(1), new FindKeysRange(0, 1, 0)));
Command SPUBLISH = new CommandImpl("spublish", 3, null, false, false, new KeyLocator(null, new BeginSearchIndex(1), new FindKeysRange(0, 1, 0)));
Command SRANDMEMBER = new CommandImpl("srandmember", -2, true, false, false, new KeyLocator(true, new BeginSearchIndex(1), new FindKeysRange(0, 1, 0)));
Command SREM = new CommandImpl("srem", -3, false, false, false, new KeyLocator(false, new BeginSearchIndex(1), new FindKeysRange(0, 1, 0)));
Command SSCAN = new CommandImpl("sscan", -3, true, false, false, new KeyLocator(true, new BeginSearchIndex(1), new FindKeysRange(0, 1, 0)));
Expand Down
Loading

0 comments on commit 998ca95

Please sign in to comment.