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

GlobalTag.py: sort the additional payloads #4730

Merged
merged 1 commit into from Jul 22, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Configuration/AlCa/python/GlobalTag.py
Expand Up @@ -118,7 +118,7 @@ def GlobalTag(essource = None, globaltag = None, conditions = None):

# explicit payloads toGet from DB
if custom_conditions:
for ( (record, label), (tag, connection) ) in custom_conditions.iteritems():
for ( (record, label), (tag, connection) ) in sorted(custom_conditions.iteritems()):
payload = cms.PSet()
payload.record = cms.string( record )
if label:
Expand Down