From 529076e43ab22014c294d06d5c14cf59caeb6493 Mon Sep 17 00:00:00 2001 From: Anton Myagkov Date: Fri, 11 Oct 2024 15:49:39 +0200 Subject: [PATCH] test: enable grpc traces for e2e tests (#2259) --- cloud/blockstore/tests/e2e-tests/test.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cloud/blockstore/tests/e2e-tests/test.py b/cloud/blockstore/tests/e2e-tests/test.py index 8c915fb5588..cc27fdd13f2 100644 --- a/cloud/blockstore/tests/e2e-tests/test.py +++ b/cloud/blockstore/tests/e2e-tests/test.py @@ -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"