Skip to content

Commit

Permalink
Merge pull request #16465 from smuzaffar/from-CMSSW_8_1_X_2016-11-03-…
Browse files Browse the repository at this point in the history
…2300

Do not sort the das results if CMSSDT_DAS_CLIENT_NO_SORT env is set
  • Loading branch information
cmsbuild committed Nov 4, 2016
2 parents ff01954 + 2af38a0 commit 2865ee9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Configuration/PyReleaseValidation/python/MatrixUtil.py
Expand Up @@ -128,7 +128,8 @@ def das(self, das_options):
if self.ib_blacklist:
command += " | grep -E -v "
command += " ".join(["-e '{0}'".format(pattern) for pattern in self.ib_blacklist])
command += " | sort -u"
from os import getenv
if getenv("CMSSDT_DAS_CLIENT_NO_SORT","NOT_SET") == "NOT_SET": command += " | sort -u"
return command

def lumiRanges(self):
Expand Down

0 comments on commit 2865ee9

Please sign in to comment.