mirror of https://github.com/apache/cloudstack.git
CS-16213: maintain single thread cluster worker until we introduce thread ordering based on the source management server id
Reviewed-by: Kelven Yang
This commit is contained in:
parent
7fec0bbab4
commit
494975e442
|
|
@ -149,7 +149,7 @@ public class ClusterManagerImpl implements ClusterManager {
|
|||
// executor to perform remote-calls in another thread context, to avoid potential
|
||||
// recursive remote calls between nodes
|
||||
//
|
||||
_executor = Executors.newCachedThreadPool(new NamedThreadFactory("Cluster-Worker"));
|
||||
_executor = Executors.newFixedThreadPool(1, new NamedThreadFactory("Cluster-Worker"));
|
||||
}
|
||||
|
||||
private void registerRequestPdu(ClusterServiceRequestPdu pdu) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue