Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit c5ac916

Browse files
committed
fix no of keys count
1 parent 5b3cfa5 commit c5ac916

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.Redis/RedisClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ public long ExecLuaAsInt(string luaBody, string[] keys, string[] args)
905905

906906
public long ExecLuaShaAsInt(string sha1, params string[] args)
907907
{
908-
return base.EvalShaInt(sha1, args.Length, args.ToMultiByteArray());
908+
return base.EvalShaInt(sha1, 0, args.ToMultiByteArray());
909909
}
910910

911911
public long ExecLuaShaAsInt(string sha1, string[] keys, string[] args)

0 commit comments

Comments
 (0)