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

Commit 0d3d36a

Browse files
committed
Fix PSetEx arguments in correct order
1 parent a0cff79 commit 0d3d36a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.Redis/RedisNativeClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ public void PSetEx(string key, long expireInMs, byte[] value)
384384
if (key == null)
385385
throw new ArgumentNullException("key");
386386

387-
SendExpectSuccess(Commands.PSetEx, expireInMs.ToUtf8Bytes(), key.ToUtf8Bytes(), value);
387+
SendExpectSuccess(Commands.PSetEx, key.ToUtf8Bytes(), expireInMs.ToUtf8Bytes(), value);
388388
}
389389

390390
public long SetNX(string key, byte[] value)

0 commit comments

Comments
 (0)