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
{{ message }}
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
In ctree a . separator is used when calling GetAll(). This forces .'s to not be accepted in some cases inside a metric namespace. This seems like an unnecessary so I think it should be removed.
I think the main place this is used is in plugin_manager.go and the grpc for both snap's side and the client libs. Changes here will result in changes being needed on the client-libs also but it would be nice if the change was backward compatible.
The text was updated successfully, but these errors were encountered:
Instead of returning a map[string]*configPolicyNode Getall()
now returns a []keyNode where keyNode contains the []string key and the
*configPolicyNode.
Adds repeated string keys for Policy proto types and implements
backwards compatible logic to work with a '.' delimitted string if using
a plugin compiled against older client-libs.
Removed freeze from ctree since it's no longer used. Also removed
references to it.
In ctree a
.
separator is used when calling GetAll(). This forces.
's to not be accepted in some cases inside a metric namespace. This seems like an unnecessary so I think it should be removed.I think the main place this is used is in plugin_manager.go and the grpc for both snap's side and the client libs. Changes here will result in changes being needed on the client-libs also but it would be nice if the change was backward compatible.
The text was updated successfully, but these errors were encountered: