diff --git a/gocd/rabbit-openqa.py b/gocd/rabbit-openqa.py index 2ac44ed3..6e840c00 100755 --- a/gocd/rabbit-openqa.py +++ b/gocd/rabbit-openqa.py @@ -292,7 +292,7 @@ class Listener(PubSubConsumer): 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