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

TrigServices: always create CoreDumpSvc

Need to set the `create=True` on `CoreDumpSvc` to ensure it is always
created even if no client asks for it. Fixes missing signal handling in HLT.

Closes ATR-29451.
parent a2578f5a
2 merge requests!717422024-05-27: merge of 24.0 into main,!71688TrigServices: always create CoreDumpSvc
# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
## @file TriggerUnixStandardSetup.py
## @brief py-module to configure the Athena AppMgr for trigger
......@@ -54,7 +54,8 @@ def commonServicesCfg(flags):
StackTrace = True, # then produce full stacktrace using gdb
DumpCoreFile = True, # also produce core file (if allowed by ulimit -c)
FatalHandler = 0, # no extra fatal handler
TimeOut = 120e9) ) # timeout for stack trace generation changed to 120s (ATR-17112,ATR-25404)
TimeOut = 120e9), # timeout for stack trace generation changed to 120s (ATR-17112,ATR-25404)
create = True ) # always create the service
# IOVSvc
cfg.addService( CompFactory.IOVSvc(
......
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