Update regex to catch more errors

support/v0.37
Andrey Berezin 2023-08-29 18:30:24 +03:00 committed by Andrey Berezin
parent 841d6674f6
commit 9456a0bb28
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class TestLogs(ClusterTestBase):
end_time = datetime.utcnow()
logs_dir = os.path.join(temp_directory, "logs")
os.makedirs(logs_dir)
issues_regex = r"\Wpanic\W|\Woom\W|\Wtoo many\W|\Winsufficient funds\W"
issues_regex = r"panic|\boom\b|too many|insufficient funds"
hosts_with_problems = []
for host in self.cluster.hosts: