Skip to content
Snippets Groups Projects
Commit 3c4f01e5 authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'master-PerfMonMTSvc-bugfix' into 'master'

PerfMonComps: Drop listening AthenaHiveEventLoopMgr in PerfMonMTSvc

See merge request atlas/athena!27139
parents 53f40637 fb812528
No related branches found
No related tags found
No related merge requests found
...@@ -102,7 +102,7 @@ void PerfMonMTSvc::startAud( const std::string& stepName, ...@@ -102,7 +102,7 @@ void PerfMonMTSvc::startAud( const std::string& stepName,
* for PerfMonMTSvc. There are some components before it. We miss them. * for PerfMonMTSvc. There are some components before it. We miss them.
* It should be fixed. * It should be fixed.
*/ */
if( compName != "PerfMonMTSvc" ){ if( compName != "AthenaHiveEventLoopMgr" && compName != "PerfMonMTSvc" ){
startSnapshotAud(stepName, compName); startSnapshotAud(stepName, compName);
if( !isLoop() ) if( !isLoop() )
...@@ -119,7 +119,7 @@ void PerfMonMTSvc::startAud( const std::string& stepName, ...@@ -119,7 +119,7 @@ void PerfMonMTSvc::startAud( const std::string& stepName,
void PerfMonMTSvc::stopAud( const std::string& stepName, void PerfMonMTSvc::stopAud( const std::string& stepName,
const std::string& compName ) { const std::string& compName ) {
if( compName != "PerfMonMTSvc" ){ if( compName != "AthenaHiveEventLoopMgr" && compName != "PerfMonMTSvc" ){
stopSnapshotAud(stepName, compName); stopSnapshotAud(stepName, compName);
if( !isLoop() ) if( !isLoop() )
......
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