Wen Bo Li

Results 166 comments of Wen Bo Li

Given that openconfig/gnmi's match.go will send all leaf updates in order to be explicit, as well as it being easier to modify ygot, I'll implement this idea to solve the...

Hi, so my guess is you've upgraded your ygot processing code to a later version than the generated ygot code. ygot versions [v0.20.0](https://github.com/openconfig/ygot/releases/tag/v0.20.0) and later should be generating both Validate()...

This is a problem with ygot where we don't support generating for the `bits` YANG type. If you remove them from the YANG files then you will get past this...

> Why can't you use InitialConfig/UpdateConfig()? > Because [config](https://pkg.go.dev/github.com/osrg/gobgp/[email protected]/internal/pkg/config).[BgpConfigSet](https://pkg.go.dev/github.com/osrg/gobgp/[email protected]/internal/pkg/config#BgpConfigSet) is in an internal package, so you can't create it programmatically. The only way is to create a config file and...

> internal/pkg/table includes many internal stuff that shouldn't be public. If policy.go can be moved to its own package that's exported that would also work. Do you think this makes...

Would you be open to a PR that exports `internal/pkg/config` and the public parts in policy.go which InitialConfig/UpdateConfig() use? We haven't finalized our design yet but this might influence our...

This sounds good to me, we already have a couple packages being released: https://github.com/orgs/openconfig/packages. @robshakir any comments?

Subscribe has an `Encoding` field: https://github.com/openconfig/gnmi/blob/master/proto/gnmi/gnmi.proto#L279 @robshakir Any previous discussions to introduce ```proto enum DataType { ALL = 0; // All data elements. CONFIG = 1; // Config (rw) only...