Drop another place where openshift_pseudohosts_stg is.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2019-11-09 00:30:26 +00:00 committed by Pierre-Yves Chibon
parent 082d1316bf
commit c0a8e7e49d

View file

@ -9,9 +9,9 @@ def invert_fedmsg_policy(groups, vars, env):
"""
if env == 'staging':
hosts = groups['all'] + groups['staging'] + groups['fedmsg_qa_network_stg'] + groups['openshift_pseudohosts_stg']
hosts = groups['all'] + groups['staging'] + groups['fedmsg_qa_network_stg']
else:
hosts = [h for h in groups['all'] if h not in groups['staging'] + groups['openshift_pseudohosts_stg']]
hosts = [h for h in groups['all'] if h not in groups['staging']]
inverted = {}
for host in hosts: