Skip to content

Commit

Permalink
hoftix: argocd exclude list
Browse files Browse the repository at this point in the history
Fix and issue with argocd exclude list generation logic
  • Loading branch information
all4code authored Jul 26, 2024
1 parent 1355833 commit ba72c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/cli/common/utils/optional_services_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ def build_argo_exclude_string(services: [str]) -> str:
for svc in services:
oc_to_ignore.pop(svc)
if oc_to_ignore:
return ", ".join([x for xs in list(oc_to_ignore.values()) for x in xs])
return ",".join([x for xs in list(oc_to_ignore.values()) for x in xs])
else:
return ""

0 comments on commit ba72c83

Please sign in to comment.