Skip to content

Commit ba72c83

Browse files
authored
hoftix: argocd exclude list
Fix and issue with argocd exclude list generation logic
1 parent 1355833 commit ba72c83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/cli/common/utils/optional_services_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ def build_argo_exclude_string(services: [str]) -> str:
1515
for svc in services:
1616
oc_to_ignore.pop(svc)
1717
if oc_to_ignore:
18-
return ", ".join([x for xs in list(oc_to_ignore.values()) for x in xs])
18+
return ",".join([x for xs in list(oc_to_ignore.values()) for x in xs])
1919
else:
2020
return ""

0 commit comments

Comments
 (0)