Skip to content
Snippets Groups Projects
Commit c38f0946 authored by Rafal Bielski's avatar Rafal Bielski :wave:
Browse files

conf2toConfigurable: sort new items in PrivateToolHandleArray

parent d4914b40
No related branches found
No related tags found
4 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!44647conf2toConfigurable: sort new items in PrivateToolHandleArray
......@@ -1079,7 +1079,7 @@ def conf2toConfigurable( comp, indent="", parent="", suppressDupes=False ):
for oldC in oldCset & newCset:
__areSettingsSame( toolDict[oldC], newCdict[oldC], __indent(indent))
# And now just the new properties in conf2 (the stuff just in conf1 is already in the objec)
for newC in newCset-oldCset:
for newC in sorted(newCset-oldCset):
className = newCdict[newC].getFullJobOptName().split( "/" )[0]
_log.debug('%s %s not in oldconfig. Will try to create conf1 instance using this className: %s, and merge.',indent, newC, className)
configurableClass = __findConfigurableClass( className )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment