Skip to content

Commit

Permalink
v0.8.0 redis 7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Baoyi Chen committed Feb 1, 2022
1 parent 0856431 commit 25b1577
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,8 @@ public void retry(CombineCommand command, int times) {
GenericKeyCommand cmd = (GenericKeyCommand) parsedCommand;
retry(command, slot(cmd.getKey()), times);
} else if (parsedCommand instanceof PublishCommand) {
broadcast(command, times); // broadcast function command
PublishCommand cmd = (PublishCommand) parsedCommand;
retry(command, slot(cmd.getChannel()), times);
} else {
// swapdb
// move
Expand Down

0 comments on commit 25b1577

Please sign in to comment.