Skip to content
Snippets Groups Projects
Commit efca59d2 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'trig.AthenaMonitoring-20200406' into 'master'

AthenaMonitoring: Disable trigger by default if packages are not available.

See merge request atlas/athena!31794
parents f6ccc6a3 aeef8bde
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,9 @@ def createDQConfigFlags():
acf.addFlag('DQ.disableAtlasReadyFilter', False)
acf.addFlag('DQ.enableLumiAccess', True)
acf.addFlag('DQ.FileKey', 'CombinedMonitoring')
acf.addFlag('DQ.useTrigger', True)
from PyUtils.moduleExists import moduleExists
hlt_exists = moduleExists ('TrigHLTMonitoring')
acf.addFlag('DQ.useTrigger', hlt_exists)
# temp thing for steering from inside old-style ...
acf.addFlag('DQ.isReallyOldStyle', False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment