Skip to content
Snippets Groups Projects
Commit 98ca64a6 authored by Paul Thompson's avatar Paul Thompson
Browse files

Merge remote-tracking branch 'upstream/master' into master-l1calo-monitoring-updates

more updates from master
parents b97fd2a1 f9f4caab
No related branches found
No related tags found
No related merge requests found
...@@ -178,7 +178,7 @@ def HLTMPPy_cfgdict(args): ...@@ -178,7 +178,7 @@ def HLTMPPy_cfgdict(args):
cdict = {} cdict = {}
cdict['HLTMPPU'] = { cdict['HLTMPPU'] = {
'application_name' : 'athenaHLT-%d' % os.getpid(), # unique name required to avoid interference 'application_name' : 'athenaHLT-%d' % os.getpid(), # unique name required to avoid interference
'extra_params' : ["dumpFDs=1", "dumpThreads=1"] if args.debug_fork else None, 'extra_params' : ["SkipFinalizeWorker=0"],
'interactive' : args.interactive, 'interactive' : args.interactive,
'log_root' : os.getcwd(), 'log_root' : os.getcwd(),
'log_name' : ('' if args.unique_log_files else 'athenaHLT:'), 'log_name' : ('' if args.unique_log_files else 'athenaHLT:'),
...@@ -191,6 +191,8 @@ def HLTMPPy_cfgdict(args): ...@@ -191,6 +191,8 @@ def HLTMPPy_cfgdict(args):
'soft_timeout_fraction' : 0.95, 'soft_timeout_fraction' : 0.95,
'hltresultSizeMb': args.hltresult_size 'hltresultSizeMb': args.hltresult_size
} }
if args.debug_fork:
cdict['HLTMPPU']['extra_params'] += ["dumpFDs=1", "dumpThreads=1"]
if args.debug: if args.debug:
cdict['HLTMPPU']['debug'] = args.debug cdict['HLTMPPU']['debug'] = args.debug
......
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