diff options
author | prettyboy <prettyboy@yandex-team.com> | 2023-09-06 23:46:37 +0300 |
---|---|---|
committer | prettyboy <prettyboy@yandex-team.com> | 2023-09-07 00:07:07 +0300 |
commit | 6a4d0ea1c2b008667aa54b53565935e69a164206 (patch) | |
tree | b2c81473462e2469d9923dfd84d2f178781e74f1 /library/python | |
parent | 600f4c814ddc73257214a9120b284acd20645111 (diff) | |
download | ydb-6a4d0ea1c2b008667aa54b53565935e69a164206.tar.gz |
[library/python/testing/yatest_common/yatest/common/process] Limit snippet size in logs up to 64kb
Diffstat (limited to 'library/python')
-rw-r--r-- | library/python/testing/yatest_common/yatest/common/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/process.py b/library/python/testing/yatest_common/yatest/common/process.py index 5868285226..c6c8aed526 100644 --- a/library/python/testing/yatest_common/yatest/common/process.py +++ b/library/python/testing/yatest_common/yatest/common/process.py @@ -25,7 +25,7 @@ from . import path from . import environment -MAX_OUT_LEN = 1000 * 1000 # 1 mb +MAX_OUT_LEN = 64 * 1024 # 64K MAX_MESSAGE_LEN = 1500 SANITIZER_ERROR_PATTERN = br": ([A-Z][\w]+Sanitizer)" GLIBC_PATTERN = re.compile(r"\S+@GLIBC_([0-9.]+)") |