Skip to content

Commit

Permalink
Revert turning on onlyBinary flag
Browse files Browse the repository at this point in the history
Signed-off-by: Rinat Baygildin <[email protected]>
  • Loading branch information
bayrinat committed Mar 4, 2024
1 parent d67f568 commit f8abb1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -4179,11 +4179,11 @@ func (s *BgpServer) WatchEvent(ctx context.Context, r *api.WatchEventRequest, fn
l = append(l, p...)
}
for _, p := range l {
pl = append(pl, toPathApi(p, nil, true, false, false))
pl = append(pl, toPathApi(p, nil, false, false, false))
}
} else {
for _, p := range msg.PathList {
pl = append(pl, toPathApi(p, nil, true, false, false))
pl = append(pl, toPathApi(p, nil, false, false, false))
}
}
fn(&api.WatchEventResponse{
Expand Down

0 comments on commit f8abb1c

Please sign in to comment.