Update regex to catch more errors #85

Merged
abereziny merged 1 commit from abereziny/frostfs-testcases:bugfix-log-regexes into master 2023-08-30 11:33:02 +00:00
Showing only changes of commit 1e58e65031 - Show all commits

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: