Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public RFuture<String> incrByAsync(String key, String path, long num) {
* @return Bulk String, specifically the stringified new value.
*/
public String multBy(String key, String path, long num) {
return commandExecutor.get(incrByAsync(key, path, num));
return commandExecutor.get(multByAsync(key, path, num));
}

public RFuture<String> multByAsync(String key, String path, long num) {
Expand Down