From 6a4d0ea1c2b008667aa54b53565935e69a164206 Mon Sep 17 00:00:00 2001 From: prettyboy Date: Wed, 6 Sep 2023 23:46:37 +0300 Subject: [library/python/testing/yatest_common/yatest/common/process] Limit snippet size in logs up to 64kb --- library/python/testing/yatest_common/yatest/common/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'library/python/testing') diff --git a/library/python/testing/yatest_common/yatest/common/process.py b/library/python/testing/yatest_common/yatest/common/process.py index 58682852266..c6c8aed5268 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.]+)") -- cgit v1.3