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
Consider a list value with a single list, such as:
list list1 {
key "k1";
If such a llst is accessed in RESTCONF with an empty key string: curl http://localhost/restconf/module/list1= , all elements of that list are returned. Correct behavior according ti RFC 8040 3.5.3 /4.3 is to return the instance with an empty key string.
The text was updated successfully, but these errors were encountered:
…FC 8040 it should mean the "empty string".
* Example: `GET restconf/data/x:a=`
* Previous meaning (wrong): Return all `a` elements.
* New meaning (correct): Return the `a` instance with empty key string: "".
* [RESTCONF GET request of single-key list with empty string returns all elements #213](#213)
* [RESTCONF GETof lists with empty string keys does not work #214](#214)
Consider a list value with a single list, such as:
If such a llst is accessed in RESTCONF with an empty key string:
curl http://localhost/restconf/module/list1=
, all elements of that list are returned. Correct behavior according ti RFC 8040 3.5.3 /4.3 is to return the instance with an empty key string.The text was updated successfully, but these errors were encountered: