Skip to content

Commit

Permalink
'*' is not a rerigger item
Browse files Browse the repository at this point in the history
  • Loading branch information
jnweiger committed Jan 29, 2016
1 parent 94c1906 commit 626f836
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jenkins/obs_integration/obs-monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,10 @@ def pkg_status(apiurl, proj_pack, ignore_re=None):
success_re = r'(excluded|succeeded|\(unpublished\))'
mapped = {
'good': [ 'succeeded', '(unpublished)', 'succeeded*' ],
'ignore': [ 'excluded', 'disabled' ],
'outdated': [ 'excluded*', 'disabled*', '*' ]
'ignore': [ 'excluded', 'disabled', '*'],
'outdated': [ 'excluded*', 'disabled*' ]
}
# The simple '*' is same as '(unpublished)', which is a ignore terminal state.

retrigger_states = ['failed', 'unresolvable', 'broken']
# dont list the outdated (*) entries as ignore. They often hang infinite. Retrigger them too.
Expand Down

0 comments on commit 626f836

Please sign in to comment.