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
I expect that path.Best will be true or false, but it is always false.
At the same time ListPath method returns correct values.
Is this bug or planned behavior?
The text was updated successfully, but these errors were encountered:
Is the issue you’re describing the same as the one I encountered? Here are the details of the problem I faced:
I intended to use this interface to capture EVPN Type2 route updates, but after a route update occurs, it triggers two messages:
A WITHDRAW message (Message A) flagged by isWithdraw, which I could filter out.
However, a subsequent UPDATE message (Message B) is generated almost simultaneously. The only difference between Message B and A is the isWithdraw field.
This dual-message behavior causes ambiguity, making it impossible to accurately identify true route update events. The conflict arises because both messages represent the same routing change but with opposite operational flags.
Minimal example code using latest GoBGP and gRPC API:
I expect that
path.Best
will betrue
orfalse
, but it is alwaysfalse
.At the same time
ListPath
method returns correct values.Is this bug or planned behavior?
The text was updated successfully, but these errors were encountered: