Skip to content

Commit

Permalink
multBy method use the multByAsync (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
GMHe authored Feb 27, 2022
1 parent 3017a4f commit e766e7e
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit e766e7e

Please sign in to comment.