Skip to content

Commit

Permalink
Signed-off-by: Yury-Fridlyand <[email protected]>
Browse files Browse the repository at this point in the history
  • Loading branch information
Yury-Fridlyand committed Sep 11, 2024
1 parent 070c0fb commit fad4ef3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
import command_request.CommandRequestOuterClass.RequestType;
import glide.api.models.commands.ConditionalChange;
import glide.api.models.commands.GetExOptions;
import glide.api.models.commands.InfoOptions;
import glide.api.models.commands.InfoOptions.Section;
import glide.api.models.commands.LPosOptions;
import glide.api.models.commands.ListDirection;
import glide.api.models.commands.RangeOptions;
Expand Down Expand Up @@ -352,7 +352,7 @@ public void transaction_builds_protobuf_request(BaseTransaction<?> transaction)
transaction.info();
results.add(Pair.of(Info, buildArgs()));

transaction.info(InfoOptions.builder().section(EVERYTHING).build());
transaction.info(new Section[] { EVERYTHING });
results.add(Pair.of(Info, buildArgs(EVERYTHING.toString())));

transaction.mset(Map.of("key", "value"));
Expand Down

0 comments on commit fad4ef3

Please sign in to comment.