From 1648a2396d9f46463a703249dbca93f56baae1d3 Mon Sep 17 00:00:00 2001 From: Kelven Yang Date: Thu, 8 Sep 2011 14:20:29 -0700 Subject: [PATCH] bug 10874: don't invalid run session of other management server even if it detects it is unreachable as the event may just be temporary network condition --- server/src/com/cloud/cluster/ClusterManagerImpl.java | 1 - 1 file changed, 1 deletion(-) diff --git a/server/src/com/cloud/cluster/ClusterManagerImpl.java b/server/src/com/cloud/cluster/ClusterManagerImpl.java index c765cf6cbb3..ac2db9ec4ab 100644 --- a/server/src/com/cloud/cluster/ClusterManagerImpl.java +++ b/server/src/com/cloud/cluster/ClusterManagerImpl.java @@ -871,7 +871,6 @@ public class ClusterManagerImpl implements ClusterManager { if(!pingManagementNode(mshost)) { s_logger.warn("Management node " + mshost.getId() + " is detected inactive by timestamp and also not pingable"); activePeers.remove(mshost.getId()); - _mshostDao.invalidateRunSession(mshost.getId(), mshost.getRunid()); try { JmxUtil.unregisterMBean("ClusterManager", "Node " + mshost.getId()); } catch(Exception e) {