From 7c5576ab320bb211c7c50a1fd5c3c8f5fef493ce Mon Sep 17 00:00:00 2001 From: scott snyder <snyder@bnl.gov> Date: Wed, 12 Apr 2017 15:49:22 +0200 Subject: [PATCH] AthenaCommon: Make sure registration algorithms always get run. Turn on StopOverride for AthMasterSeq to ensure that the registration sequence will always get run. --- Control/AthenaCommon/python/AppMgr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Control/AthenaCommon/python/AppMgr.py b/Control/AthenaCommon/python/AppMgr.py index d17683fb2fb..89bfcae52fd 100755 --- a/Control/AthenaCommon/python/AppMgr.py +++ b/Control/AthenaCommon/python/AppMgr.py @@ -254,7 +254,7 @@ class AthAppMgr( AppMgr ): def _build(): Logging.log.debug ("building master sequence...") - athMasterSeq = _as.AthSequencer ("AthMasterSeq",Sequential = True) + athMasterSeq = _as.AthSequencer ("AthMasterSeq",Sequential = True, StopOverride=True) athFilterSeq = _as.AthSequencer ("AthFilterSeq"); athBeginSeq = _as.AthSequencer ("AthBeginSeq",Sequential=True) athCondSeq = _as.AthSequencer ("AthCondSeq") -- GitLab