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
Fix error in discovering all nodes using list_prefix.
The document mentions using `list_prefix("/")` to discover all nodes
in a store. But the spec says that a root node has the empty string
prefix. So `list_prefix("/")` would return the empty list since no
other non-root node can have have the "/" prefix since all non-root
nodes need to have a name. This commit fixes that error by replacing
the call to `list_prefix` with the empty string.
0 commit comments