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
in layer2.proto file simple string could be fine instead of types.Path . It is to clear lldp interface adjacency and not for config or streaming anything out side.
#133
Open
jatinvd opened this issue
Feb 1, 2023
· 0 comments
The text was updated successfully, but these errors were encountered:
jatinvd
changed the title
in layer2.proto file simple string could be fine instead of types.Path . it is only menat to clear lldp interface and not for streaming anything out side.
in layer2.proto file simple string could be fine instead of types.Path . It is to clear lldp interface adjacency and not for config or streaming anything out side.
Feb 2, 2023
from https://github.com/openconfig/gnoi/blob/main/layer2/layer2.proto
message ClearLLDPInterfaceRequest {
types.Path interface = 1;
}
===> this message is only meant to clear LLDP adjacency on the provided interface.
Now why to make it complicated as this is not used for any other purpose like streaming ?
can we have it as simple string?
example:
message ClearLLDPInterfaceRequest {
string interface = 1;
}
This makes more sense i think.
The text was updated successfully, but these errors were encountered: