aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimoney, Dan (dt5972) <dt5972@att.com>2018-08-16 14:54:25 -0400
committerTimoney, Dan (dt5972) <dt5972@att.com>2018-08-16 14:54:25 -0400
commit754779c57d8d93f2e16860fda9e23ba4a08a8346 (patch)
treee9dd8f61c5004f8a8ab7fe139015e27bbb243e71
parent873abba0eb4c080a5ae82f00072e680675e364ff (diff)
Fixed error in Yang model
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>
-rwxr-xr-xvnfapi/model/src/main/yang/VNF-API.yang4
1 files changed, 2 insertions, 2 deletions
diff --git a/vnfapi/model/src/main/yang/VNF-API.yang b/vnfapi/model/src/main/yang/VNF-API.yang
index 2648a381..3dd5105a 100755
--- a/vnfapi/model/src/main/yang/VNF-API.yang
+++ b/vnfapi/model/src/main/yang/VNF-API.yang
@@ -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;
}
}
}