From 12fbe24a1632bc1eed86e038016415a892560106 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 22 May 2019 00:09:09 +0000 Subject: [PATCH] filter plugins: Fix group names for - vs _ Signed-off-by: Kevin Fenzi --- filter_plugins/fedmsg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter_plugins/fedmsg.py b/filter_plugins/fedmsg.py index 4963728ef9..248d5640f9 100644 --- a/filter_plugins/fedmsg.py +++ b/filter_plugins/fedmsg.py @@ -9,7 +9,7 @@ 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'] + groups['openshift_pseudohosts_stg'] else: hosts = [h for h in groups['all'] if h not in groups['staging'] + groups['openshift_pseudohosts_stg']]