Skip to content

Commit

Permalink
Merge pull request #39266 from mmusich/fixDQMUnitTests
Browse files Browse the repository at this point in the history
drop `--catalog` option from `edmFileUtil` check in `unittestinputsource` (online DQM unit tests)
  • Loading branch information
cmsbuild authored Aug 31, 2022
2 parents fb3cb26 + 9a056d4 commit 39bec54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DQM/Integration/python/config/unittestinputsource_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
secFiles.extend(sec)

# Get last eventsPerLumi of events in this file
command = "edmFileUtil --catalog file:/cvmfs/cms-ib.cern.ch/SITECONF/local/PhEDEx/storage.xml?protocol=xrootd --events %s | tail -n +9 | head -n -5 | awk '{ print $3 }'" % read[0]
command = "edmFileUtil --events %s | tail -n +9 | head -n -5 | awk '{ print $3 }'" % read[0]
print(command)
events = subprocess.check_output(command, shell=True)
events = events.split(b'\n')
Expand Down

0 comments on commit 39bec54

Please sign in to comment.