upavlo

Results 3 issues of upavlo

When generating a proto message, if more than one enum is defined within a union then ygot will pick whatever the first enum that is declared in the schema, instead...

bug

Following from this: https://github.com/openconfig/ygot/issues/38 Consider the following example: ```yang leaf-list list-of-things { type union { type uint32; type string; } } ``` which generates: ```proto message ListOfThingsUnion { string list_of_things_string...

needs-discussion

In OpenConfig model there are instances where multiple leafs are defined as of the same enum type. However in some cases leaf's default value is set and in some it's...