diff options
author | Vasily Gerasimov <UgnineSirdis@ydb.tech> | 2024-01-31 10:17:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 10:17:22 +0200 |
commit | 2e3d80efffa46aa70783fdb1bcedac569156d995 (patch) | |
tree | 018a6ff8d78693f497260a8588ccf5c714bc8bb0 | |
parent | 90d11102bc60465d4d581372bd1a3a5c114dbae0 (diff) | |
download | ydb-2e3d80efffa46aa70783fdb1bcedac569156d995.tar.gz |
Increase subprocess timeout to fix test (#1424)
-rw-r--r-- | ydb/tests/tools/datastreams_helpers/data_plane.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/tests/tools/datastreams_helpers/data_plane.py b/ydb/tests/tools/datastreams_helpers/data_plane.py index e3aef0d6ce..1a94d3f7d8 100644 --- a/ydb/tests/tools/datastreams_helpers/data_plane.py +++ b/ydb/tests/tools/datastreams_helpers/data_plane.py @@ -60,7 +60,7 @@ def read_stream(path, messages_count, commit_after_processing=True, consumer_nam ] + ["--commit-after-processing"] if commit_after_processing else [] with open(result_file, "w") as outfile: - yatest.common.execute(cmd, timeout=timeout * 1.2, stdout=outfile) + yatest.common.execute(cmd, timeout=timeout * 2, stdout=outfile) ret = [] with open(result_file, "r") as result: |