Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Charles Burton
Gaudi
Commits
8c5b41a1
Commit
8c5b41a1
authored
Dec 30, 2017
by
Marco Clemencic
Browse files
Demoted a few AvalancheSchedulerSvc messages
parent
6f211679
Changes
2
Hide whitespace changes
Inline
Side-by-side
GaudiExamples/tests/qmtest/refs/ToolHandles.ref
View file @
8c5b41a1
...
...
@@ -9,8 +9,6 @@ ApplicationMgr SUCCESS
ApplicationMgr INFO Application Manager Configured successfully
ThreadPoolSvc INFO no thread init tools attached
AvalancheSchedu... INFO Activating scheduler in a separate thread
AvalancheSchedu... INFO Waiting for AvalancheSchedulerSvc to activate
AvalancheSchedu... INFO Start checking the actionsQueue
AlgResourcePool INFO TopAlg list empty. Recovering the one of Application Manager
AlgResourcePool INFO Algorithm THDataProducer is un-Clonable but Cardinality was set to 0. Only creating 1 instance
AlgResourcePool INFO Algorithm THDataProducer2 is un-Clonable but Cardinality was set to 0. Only creating 1 instance
...
...
@@ -42,7 +40,6 @@ HiveSlimEventLo... INFO 0 events were SKIPed
ApplicationMgr INFO Application Manager Stopped successfully
HiveSlimEventLo... INFO Histograms converted successfully according to request.
AvalancheSchedu... INFO Joining Scheduler thread
AvalancheSchedu... INFO Terminating thread-pool resources
ToolSvc INFO Removing all tools created by ToolSvc
ApplicationMgr INFO Application Manager Finalized successfully
ApplicationMgr INFO Application Manager Terminated successfully
GaudiHive/src/AvalancheSchedulerSvc.cpp
View file @
8c5b41a1
#include "AvalancheSchedulerSvc.h"
#include "AlgoExecutionTask.h"
#include "IOBoundAlgTask.h"
...
...
@@ -82,7 +83,7 @@ StatusCode AvalancheSchedulerSvc::initialize()
fatal
()
<<
"Terminating initialization"
<<
endmsg
;
return
StatusCode
::
FAILURE
;
}
else
{
info
()
<<
"Waiting for AvalancheSchedulerSvc to activate"
<<
endmsg
;
ON_DEBUG
debug
()
<<
"Waiting for AvalancheSchedulerSvc to activate"
<<
endmsg
;
sleep
(
1
);
}
}
...
...
@@ -379,7 +380,7 @@ void AvalancheSchedulerSvc::activate()
m_isActive
=
ACTIVE
;
// Continue to wait if the scheduler is running or there is something to do
info
()
<<
"Start checking the actionsQueue"
<<
endmsg
;
ON_DEBUG
debug
()
<<
"Start checking the actionsQueue"
<<
endmsg
;
while
(
m_isActive
==
ACTIVE
or
m_actionsQueue
.
size
()
!=
0
)
{
m_actionsQueue
.
pop
(
thisAction
);
sc
=
thisAction
();
...
...
@@ -392,7 +393,7 @@ void AvalancheSchedulerSvc::activate()
}
}
info
()
<<
"Terminating thread-pool resources"
<<
endmsg
;
ON_DEBUG
debug
()
<<
"Terminating thread-pool resources"
<<
endmsg
;
if
(
m_threadPoolSvc
->
terminatePool
().
isFailure
()
)
{
error
()
<<
"Problems terminating thread pool"
<<
endmsg
;
m_isActive
=
FAILURE
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment