Skip to content

Commit

Permalink
Merge pull request #3025 from Vogtinator/staginggroup
Browse files Browse the repository at this point in the history
gocd/rabbit-openqa.py: Ignore jobs without group
  • Loading branch information
Vogtinator authored Oct 27, 2023
2 parents fcdc535 + b751486 commit 3a138b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gocd/rabbit-openqa.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def still_alive(self):

def is_production_job(self, job):
if '/' in job['settings'].get('BUILD', '/') or \
'Development' in job['group']:
'group' not in job or 'Development' in job['group']:
return False

return True
Expand Down

0 comments on commit 3a138b5

Please sign in to comment.