You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
choice c {
case x {
leaf first { type boolean; }
}
case y {
leaf second { type boolean; }
leaf third { type boolean; }
}
An edit in the datastore such as:
<first/> -> <second/> will result in a change event
<first/> -> <third/> will result in a del + add event
This is not logical.
It is proposed to change the behavior so that all changes in a choice or choice+case is changed to be a del + add event .
This may have consequnces on existing transaction callback code.
The text was updated successfully, but these errors were encountered:
Given YANG:
An edit in the datastore such as:
<first/> -> <second/>
will result in a change event<first/> -> <third/>
will result in a del + add eventThis is not logical.
It is proposed to change the behavior so that all changes in a choice or choice+case is changed to be a del + add event .
This may have consequnces on existing transaction callback code.
The text was updated successfully, but these errors were encountered: