radu-todirica commented on a change in pull request #4205:
URL: https://github.com/apache/cloudstack/pull/4205#discussion_r637003670
##########
File path:
server/src/main/java/com/cloud/configuration/ConfigurationManagerImpl.java
##########
@@ -1775,6 +1786,16 @@ private void checkZoneParameters(final String zoneName,
final String dns1, final
}
}
+ private boolean isTungstenZone(long zoneId){
+ boolean isTungsten = false;
+ List<PhysicalNetworkVO> physicalNetworks =
_physicalNetworkDao.listByZone(zoneId);
+ for(PhysicalNetworkVO physicalNetwork : physicalNetworks){
+ if(physicalNetwork.getIsolationMethods().contains("TF"))
+ isTungsten = true;
Review comment:
Done.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]