Merge "Fixed for bug : 1171 - issue while creating subnet"
authorEd Warnicke <eaw@cisco.com>
Fri, 1 Aug 2014 02:33:46 +0000 (02:33 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Fri, 1 Aug 2014 02:33:46 +0000 (02:33 +0000)
opendaylight/networkconfiguration/neutron/src/main/java/org/opendaylight/controller/networkconfig/neutron/NeutronSubnet.java

index d032d2e8acf7f1694da85b7fec18a0623176962d..1f10b395137c498b3e542e974545132332e84be4 100644 (file)
@@ -299,7 +299,7 @@ public class NeutronSubnet extends ConfigurationObject implements Serializable,
             try {
                 SubnetUtils util = new SubnetUtils(cidr);
                 SubnetInfo info = util.getInfo();
-                if (gatewayIP == null) {
+                if (gatewayIP == null || ("").equals(gatewayIP)) {
                     gatewayIP = info.getLowAddress();
                 }
                 if (allocationPools.size() < 1) {