We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bfcb44 commit b7869d0Copy full SHA for b7869d0
1 file changed
src/python/WMCore/WMRuntime/Scripts/SetupCMSSWPset.py
@@ -591,10 +591,13 @@ def handleScitagConfig(self):
591
592
self.logger.info("Enabling ScitagConfig with productionCase for CMSSW version: %s", cmsswVersion)
593
tweak = PSetTweak()
594
- tweak.addParameter("process.ScitagConfig",
595
- "customTypeCms.Service('ScitagConfig', productionCase=cms.untracked.bool(True))")
+ tweak.addParameter("process.ScitagConfig", "customTypeCms.Service('ScitagConfig')")
596
self.applyPsetTweak(tweak, skipIfSet=True)
597
+ tweak = PSetTweak()
598
+ tweak.addParameter("process.ScitagConfig.productionCase", "customTypeCms.untracked.bool(True)")
599
+ self.applyPsetTweak(tweak)
600
+
601
return
602
603
def handleEnforceGUIDInFileName(self, secondaryInput=None):
0 commit comments