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

Removed CouchURL param from injection dict in 91X #17989

Merged
merged 1 commit into from Mar 20, 2017
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
5 changes: 2 additions & 3 deletions Configuration/PyReleaseValidation/python/MatrixInjector.py
Expand Up @@ -101,7 +101,6 @@ def __init__(self,opt,mode='init',options=''):
"ScramArch": os.getenv('SCRAM_ARCH'), #Scram Arch (used for all tasks in chain)
"ProcessingVersion": self.version, #Processing Version (used for all tasks in chain)
"GlobalTag": None, #Global Tag (overridden per task)
"CouchURL": self.couch, #URL of CouchDB containing Config Cache
"ConfigCacheURL": self.couch, #URL of CouchDB containing Config Cache
"DbsUrl": self.DbsUrl,
#- Will contain all configs for all Tasks
Expand Down Expand Up @@ -502,14 +501,14 @@ def upload(self):
#upload
couchID=self.uploadConf(d[it]['ConfigCacheID'],
str(n)+d[it]['TaskName'],
d['CouchURL']
d['ConfigCacheURL']
)
print d[it]['ConfigCacheID']," uploaded to couchDB for",str(n),"with ID",couchID
d[it]['ConfigCacheID']=couchID
if it =='DQMConfigCacheID':
couchID=self.uploadConf(d['DQMConfigCacheID'],
str(n)+'harvesting',
d['CouchURL']
d['ConfigCacheURL']
)
print d['DQMConfigCacheID'],"uploaded to couchDB for",str(n),"with ID",couchID
d['DQMConfigCacheID']=couchID
Expand Down