Skip to content

Commit

Permalink
do not sort the das results if CMSSDT_DAS_CLIENT_NO_SORT env is set
Browse files Browse the repository at this point in the history
  • Loading branch information
smuzaffar committed Nov 4, 2016
1 parent 69a9ed5 commit 2af38a0
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 2af38a0

Please sign in to comment.