You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If cleanup=true, removes all VRs and creates VR, implements network.
If cleanup=false, skips running VRs, implements network for stopped/deleted VRs.
Signed-off-by: Rohit Yadav <rohit.yadav@citrix.com>
@@ -232,6 +235,8 @@ public class NetworkManagerImpl implements NetworkManager, NetworkService, Manag
232
235
@Inject
233
236
DataCenterDao_dcDao = null;
234
237
@Inject
238
+
HostPodDao_podDao = null;
239
+
@Inject
235
240
VlanDao_vlanDao = null;
236
241
@Inject
237
242
IPAddressDao_ipAddressDao = null;
@@ -240,6 +245,8 @@ public class NetworkManagerImpl implements NetworkManager, NetworkService, Manag
240
245
@Inject
241
246
DomainDao_domainDao = null;
242
247
@Inject
248
+
DomainRouterDao_domainRouterDao = null;
249
+
@Inject
243
250
UserStatisticsDao_userStatsDao = null;
244
251
@Inject
245
252
EventDao_eventDao = null;
@@ -3807,12 +3814,6 @@ public boolean restartNetwork(RestartNetworkCmd cmd, boolean cleanup) throws Con
3807
3814
thrownewInvalidParameterValueException("Network is not in the right state to be restarted. Correct states are: " + Network.State.Implemented + ", " + Network.State.Setup);
3808
3815
}
3809
3816
3810
-
// don't allow clenaup=true for the network in Basic zone
0 commit comments