clean up code

This commit is contained in:
Pearl Dsilva 2024-01-22 18:42:23 -05:00
parent b0b4175e6e
commit f537283b84
1 changed files with 0 additions and 5 deletions

View File

@ -1751,15 +1751,10 @@ public class NetworkOrchestrator extends ManagerBase implements NetworkOrchestra
}
//apply network ACLs
NsxProviderVO nsxProviderVO = nsxProviderDao.findByZoneId(zone.getId());
// Objects.isNull(nsxProviderVO) &&
if (!_networkACLMgr.applyACLToNetwork(networkId)) {
s_logger.warn("Failed to reapply network ACLs as a part of of network id=" + networkId + " restart");
success = false;
}
// else if (Objects.nonNull(nsxProviderVO)) {
// success = true;
// }
return success;
}