Skip to content

Commit

Permalink
Merge pull request #15298 from diguida/update_Express_GT_for_EvD_80X
Browse files Browse the repository at this point in the history
Use the latest Express GT as a fallback, and fix http proxy setting in curl for Tier0 DataService query for Event Display applications.
  • Loading branch information
davidlange6 committed Aug 10, 2016
2 parents 0d43f1f + 13c6ade commit 9e0afcc
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -5,7 +5,7 @@
# Default Express GT: it is the GT that will be used in case we are not able
# to retrieve the one used at Tier0.
# It should be kept in synch with Express processing at Tier0.
GlobalTag.globaltag = cms.string( "80X_dataRun2_Express_v10" )
GlobalTag.globaltag = cms.string( "80X_dataRun2_Express_v11" )
es_prefer_GlobalTag = cms.ESPrefer('PoolDBESSource','GlobalTag')

# ===== auto -> Automatically get the GT string from current Tier0 configuration via a Tier0Das call.
Expand Down Expand Up @@ -87,7 +87,7 @@ def _queryTier0DataSvc( self, url ):
userAgent = "User-Agent: DQMIntegration/2.0 python/%d.%d.%d PycURL/%s" % ( sys.version_info[ :3 ] + ( pycurl.version_info()[ 1 ], ) )

proxy = ""
if self._proxy: proxy = ' --proxy=%s ' % self._proxy
if self._proxy: proxy = ' --proxy %s ' % self._proxy

debug = " -s -S "
if self._debug: debug = " -v "
Expand Down

0 comments on commit 9e0afcc

Please sign in to comment.