bug 7031 also send down when router state is Starting

status 7031: resolved fixed
This commit is contained in:
Chiradeep Vittal 2010-11-05 13:17:06 -07:00
parent 3c840f910a
commit b3c87d8f25
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}