Update regex to catch more errors
This commit is contained in:
parent
841d6674f6
commit
9456a0bb28
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue