mirror of https://github.com/apache/cloudstack.git
bug 7031 also send down when router state is Starting
status 7031: resolved fixed
This commit is contained in:
parent
3c840f910a
commit
b3c87d8f25
|
|
@ -2148,7 +2148,7 @@ public class DomainRouterManagerImpl implements DomainRouterManager, VirtualMach
|
|||
s_logger.warn("Failed to start remote access VPN: no router found for account and zone");
|
||||
return null;
|
||||
}
|
||||
if (router.getState() != State.Running) {
|
||||
if (router.getState() != State.Running && router.getState() != State.Starting) {
|
||||
s_logger.warn("Failed to start remote access VPN: router not in running state");
|
||||
return null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue