From ced72602ef7bc3ea3b35555cc2ac8bef56f824e0 Mon Sep 17 00:00:00 2001 From: Andrey Berezin Date: Wed, 28 Dec 2022 16:24:02 +0300 Subject: [PATCH] Add too many open files to logs analyzer Signed-off-by: Andrey Berezin --- pytest_tests/testsuites/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest_tests/testsuites/conftest.py b/pytest_tests/testsuites/conftest.py index 4d9de51..b2ff887 100644 --- a/pytest_tests/testsuites/conftest.py +++ b/pytest_tests/testsuites/conftest.py @@ -268,7 +268,7 @@ def default_wallet(client_shell: Shell, temp_directory: str, cluster: Cluster): @allure.title("Check logs for OOM and PANIC entries in {logs_dir}") def check_logs(logs_dir: str): - problem_pattern = r"\Wpanic\W|\Woom\W" + problem_pattern = r"\Wpanic\W|\Woom\W|\Wtoo many open files\W" log_file_paths = [] for directory_path, _, file_names in os.walk(logs_dir):