Merge "Fix service_mapped_to_host filter for common services"

This commit is contained in:
Zuul 2020-04-16 14:03:34 +00:00 committed by Gerrit Code Review
commit b4686771b8

View File

@ -63,7 +63,7 @@ def service_mapped_to_host(context, service):
group = service.get("group") group = service.get("group")
if group is not None: if group is not None:
return group in context.get("group_names") return group in context.get("group_names") or group == "all"
raise exception.FilterError( raise exception.FilterError(
"Service definition for '%s' does not have a 'group' or " "Service definition for '%s' does not have a 'group' or "