Skip to content

Commit

Permalink
TODO
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Apr 26, 2024
1 parent 24d0d6c commit 56b6023
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -384,12 +384,8 @@ public void transaction_builds_protobuf_request(BaseTransaction<?> transaction)
transaction.zpopmin("key", 2);
results.add(Pair.of(ZPopMin, buildArgs("key", "2")));

// TODO use buildArgs after merge/rebase on main
transaction.bzpopmin(new String[] {"key1", "key2"}, .5);
results.add(
Pair.of(
BZPopMin,
ArgsArray.newBuilder().addArgs("key1").addArgs("key2").addArgs("0.5").build()));
results.add(Pair.of(BZPopMin, buildArgs("key1", "key2", "0.5")));

transaction.zpopmax("key");
results.add(Pair.of(ZPopMax, buildArgs("key")));
Expand Down

0 comments on commit 56b6023

Please sign in to comment.