Fixed: [Openconfig configuration on Juniper MX does not work](https://github.com/clicon/clixon-controller/issues/20)
This commit is contained in:
parent
6d53603c55
commit
3b636b51f0
2 changed files with 7 additions and 2 deletions
|
|
@ -50,6 +50,7 @@ Expected: October 2023
|
|||
|
||||
### Corrected Bugs
|
||||
|
||||
* Fixed: [Openconfig configuration on Juniper MX does not work](https://github.com/clicon/clixon-controller/issues/20)
|
||||
* Fixed: CLI output pipes: Add CLICON_PIPETREE to any cli files, not just the first
|
||||
|
||||
## 6.3.0
|
||||
|
|
|
|||
|
|
@ -179,8 +179,12 @@ ys_grouping_resolve(yang_stmt *yuses,
|
|||
else {
|
||||
ys = yuses; /* Check upwards in hierarchy for matching groupings */
|
||||
while (1){
|
||||
if ((yp = yang_parent_get(ys)) == NULL)
|
||||
break;
|
||||
if (ys->ys_mymodule){
|
||||
yp = ys->ys_mymodule;
|
||||
}
|
||||
else
|
||||
if ((yp = yang_parent_get(ys)) == NULL)
|
||||
break;
|
||||
if ((keyw = yang_keyword_get(yp)) == Y_SPEC)
|
||||
break;
|
||||
else if (keyw == Y_MODULE || keyw == Y_SUBMODULE){ /* Try submodules */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue