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
|
### 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
|
* Fixed: CLI output pipes: Add CLICON_PIPETREE to any cli files, not just the first
|
||||||
|
|
||||||
## 6.3.0
|
## 6.3.0
|
||||||
|
|
|
||||||
|
|
@ -179,6 +179,10 @@ ys_grouping_resolve(yang_stmt *yuses,
|
||||||
else {
|
else {
|
||||||
ys = yuses; /* Check upwards in hierarchy for matching groupings */
|
ys = yuses; /* Check upwards in hierarchy for matching groupings */
|
||||||
while (1){
|
while (1){
|
||||||
|
if (ys->ys_mymodule){
|
||||||
|
yp = ys->ys_mymodule;
|
||||||
|
}
|
||||||
|
else
|
||||||
if ((yp = yang_parent_get(ys)) == NULL)
|
if ((yp = yang_parent_get(ys)) == NULL)
|
||||||
break;
|
break;
|
||||||
if ((keyw = yang_keyword_get(yp)) == Y_SPEC)
|
if ((keyw = yang_keyword_get(yp)) == Y_SPEC)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue