Fixed error in Yang model 61/60961/1
authorTimoney, Dan (dt5972) <dt5972@att.com>
Thu, 16 Aug 2018 18:54:25 +0000 (14:54 -0400)
committerTimoney, Dan (dt5972) <dt5972@att.com>
Thu, 16 Aug 2018 18:54:25 +0000 (14:54 -0400)
Wrong prefix used in 2 places to refer to ietf-inet-types import (prefix
defined as ietf, but reference was using inet)

Change-Id: I8a125f3ea560499487ec08250bb46aae1f209347
Issue-ID: SDNC-422
Signed-off-by: Timoney, Dan (dt5972) <dt5972@att.com>
vnfapi/model/src/main/yang/VNF-API.yang

index 2648a38..3dd5105 100755 (executable)
@@ -369,11 +369,11 @@ module VNF-API {
                }
                leaf vnfc-address-ipv4 {
                     description "Either IpV4 IP addresses or IpV6 IP addresses should be present,  but not both within one VnfcVersion. ";
-                    type inet:ip-address;
+                    type ietf:ip-address;
                }
                leaf vnfc-address-ipv6 {
                     description "Either IpV4 IP addresses or IpV6 IP addresses should be present,  but not both within one VnfcVersion.";
-                    type inet:ipv6-address;
+                    type ietf:ipv6-address;
                }
             }
          }