SCRIPT KILL command fixed

This commit is contained in:
Ivo Ramirez
2011-12-15 18:44:44 +01:00
committed by ivowiblo
parent 9bf19c6237
commit df1dfce327
2 changed files with 9 additions and 3 deletions

View File

@@ -3047,7 +3047,8 @@ public class BinaryJedis implements BinaryJedisCommands {
return client.getBinaryBulkReply();
}
public void scriptKill(){
public byte[] scriptKill(){
client.scriptKill();
return client.getBinaryBulkReply();
}
}