fix: ignore more cache errors

This commit is contained in:
Cyril Levis 2022-11-16 14:43:35 +01:00
parent 04c1f83e74
commit 633b6d3851
No known key found for this signature in database
GPG key ID: 6DB88737C11F5A48

View file

@ -36,7 +36,7 @@ def ssacli(sub_command):
def _parse_ctrl_output(lines):
controllers = {}
current_ctrl = None
ignore_patterns = ['Note:', 'Error:', 'is not loaded', 'README']
ignore_patterns = ['Note:', 'Error:', 'is not loaded', 'README', 'failure']
ignore_match = False
for line in lines:
for pattern in ignore_patterns: