mirror of https://github.com/apache/cloudstack.git
Only issue CheckRouterCommand to redundant routers
This commit is contained in:
parent
99d1cb4718
commit
d9fb62d819
|
|
@ -704,6 +704,9 @@ public class VirtualNetworkApplianceManagerImpl implements VirtualNetworkApplian
|
|||
s_logger.debug("Found " + routers.size() + " running routers. ");
|
||||
|
||||
for (DomainRouterVO router : routers) {
|
||||
if (!router.getIsRedundantRouter()) {
|
||||
continue;
|
||||
}
|
||||
String privateIP = router.getPrivateIpAddress();
|
||||
HostVO host = _hostDao.findById(router.getHostId());
|
||||
/* Only cover hosts managed by this management server */
|
||||
|
|
|
|||
Loading…
Reference in New Issue