Skip to content

Commit

Permalink
syslog.py: whitelist INFO-level tcmu-runner syslog messages
Browse files Browse the repository at this point in the history
During iSCSI Gateway (igw) test runs, tcmu-runner sometimes emits syslog
messages at INFO level. According to the ceph-iscsi developers, these messages
are harmless and should not cause tests to fail.

Signed-off-by: Nathan Cutler <[email protected]>
  • Loading branch information
smithfarm committed Mar 28, 2019
1 parent a9a59b7 commit 2849938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teuthology/task/internal/syslog.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def syslog(ctx, config):
run.Raw('|'),
'grep', '-v', 'ceph-crash',
run.Raw('|'),
'egrep', '-v', '\\btcmu-runner\\b.*\\load_our_module\\b',
'egrep', '-v', '\\btcmu-runner\\b.*\\bINFO\\b',
run.Raw('|'),
'head', '-n', '1',
],
Expand Down

0 comments on commit 2849938

Please sign in to comment.