Skip to content

Commit

Permalink
test: enable grpc traces for e2e tests (#2259)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonmyagkov authored Oct 11, 2024
1 parent cf8c921 commit 529076e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cloud/blockstore/tests/e2e-tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ def init(with_netlink=True, with_endpoint_proxy=True):
client_config_path.write_text(MessageToString(client_config))

def run(*args, **kwargs):
args = [BLOCKSTORE_CLIENT_PATH, *args, "--config", str(client_config_path)]
args = [BLOCKSTORE_CLIENT_PATH,
*args,
"--grpc-trace",
"--config",
str(client_config_path)]
script_input = kwargs.get("input")
if script_input is not None:
script_input = script_input + "\n"
Expand Down

0 comments on commit 529076e

Please sign in to comment.