mirror of https://github.com/apache/cloudstack.git
CS-15356: cloudstack 3.0 API - updateZone API - when internaldns2 parameter is not being passed to updateZone API, leave it as is (i.e. remain original value of internaldns2).
This commit is contained in:
parent
6a12977173
commit
709e878e43
|
|
@ -1427,6 +1427,10 @@ public class ConfigurationManagerImpl implements ConfigurationManager, Configura
|
|||
internalDns1 = zone.getInternalDns1();
|
||||
}
|
||||
|
||||
if (internalDns2 == null) {
|
||||
internalDns2 = zone.getInternalDns2();
|
||||
}
|
||||
|
||||
if (guestCidr == null) {
|
||||
guestCidr = zone.getGuestNetworkCidr();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue