Skip to content

Commit

Permalink
resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Chloe Yip committed Jun 19, 2024
1 parent b9243da commit a1ee4ab
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 1 addition & 0 deletions glide-core/src/protobuf/redis_request.proto
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ enum RequestType {
FunctionKill = 161;
FunctionStats = 162;
FCallReadOnly = 163;
FlushDB = 164;
LSet = 165;
XDel = 166;
XRange = 167;
Expand Down
6 changes: 0 additions & 6 deletions java/client/src/main/java/glide/api/BaseClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -477,12 +477,6 @@ public CompletableFuture<String> getex(@NonNull String key, @NonNull GetExOption
return commandManager.submitNewCommand(GetEx, arguments, this::handleStringOrNullResponse);
}

@Override
public CompletableFuture<String> set(@NonNull byte[] key, @NonNull byte[] value) {
return commandManager.submitNewCommand(
Set, Arrays.asList(key, value), this::handleStringResponse);
}

@Override
public CompletableFuture<String> set(@NonNull String key, @NonNull String value) {
return commandManager.submitNewCommand(
Expand Down

0 comments on commit a1ee4ab

Please sign in to comment.