Skip to content

Commit

Permalink
RedisAdvancedClusterAsyncCommands.scriptKill now calls scriptKill ins…
Browse files Browse the repository at this point in the history
…tead of scriptFlush #1341

Original pull request: #1340.
  • Loading branch information
dengliming authored and mp911de committed Jul 13, 2020
1 parent 2d55c12 commit 32e17ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ public RedisFuture<String> scriptFlush() {
@Override
public RedisFuture<String> scriptKill() {

Map<String, CompletableFuture<String>> executions = executeOnNodes(RedisScriptingAsyncCommands::scriptFlush,
Map<String, CompletableFuture<String>> executions = executeOnNodes(RedisScriptingAsyncCommands::scriptKill,
redisClusterNode -> true);
return MultiNodeExecution.alwaysOkOfAsync(executions);
}
Expand Down

0 comments on commit 32e17ba

Please sign in to comment.