Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sort VOs to make sure generated xml is always the same in OSG_autoconf #317

Merged
merged 2 commits into from
Aug 17, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion factory/tools/OSG_autoconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def get_entry_dictionary(resource, vos, cpus, walltime, memory):
if resource:
edict["attrs"]["GLIDEIN_ResourceName"] = {"value": resource}
if len(vos) > 0:
edict["attrs"]["GLIDEIN_Supported_VOs"] = {"value": ",".join(vos)}
edict["attrs"]["GLIDEIN_Supported_VOs"] = {"value": ",".join(sorted(vos))}
edict["submit_attrs"] = {}
if cpus != None:
edict["attrs"]["GLIDEIN_CPUS"] = {"value": cpus}
Expand Down