Skip to content

Commit a952e3b

Browse files
author
Gabriel Erzse
committed
Use expiryOption in PipelineBase.expireAt
One of the expireAt methods in PipelineBase is not using its ExpiryOption argument. Fix this by forwarding that argument too to the commandObjects.
1 parent a9d3d3e commit a952e3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/redis/clients/jedis/PipeliningBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2088,7 +2088,7 @@ public Response<Long> expireAt(byte[] key, long unixTime) {
20882088

20892089
@Override
20902090
public Response<Long> expireAt(byte[] key, long unixTime, ExpiryOption expiryOption) {
2091-
return appendCommand(commandObjects.expireAt(key, unixTime));
2091+
return appendCommand(commandObjects.expireAt(key, unixTime, expiryOption));
20922092
}
20932093

20942094
@Override

0 commit comments

Comments
 (0)