summaryrefslogtreecommitdiffhomepage
path: root/api/grpc_server.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/grpc_server.go')
-rw-r--r--api/grpc_server.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/grpc_server.go b/api/grpc_server.go
index 67ff7722..817199b5 100644
--- a/api/grpc_server.go
+++ b/api/grpc_server.go
@@ -462,7 +462,7 @@ func (s *Server) GetRib(ctx context.Context, arg *GetRibRequest) (*GetRibRespons
pp := ToPathApi(p)
switch arg.Table.Type {
case Resource_LOCAL, Resource_GLOBAL:
- if i == 0 {
+ if i == 0 && !table.SelectionOptions.DisableBestPathSelection {
pp.Best = true
}
}
@@ -517,7 +517,7 @@ func (s *Server) GetPath(arg *GetPathRequest, stream GobgpApi_GetPathServer) err
for _, dst := range tbl.GetDestinations() {
for idx, path := range dst.GetAllKnownPathList() {
p := ToPathApi(path)
- if idx == 0 {
+ if idx == 0 && !table.SelectionOptions.DisableBestPathSelection {
switch arg.Type {
case Resource_LOCAL, Resource_GLOBAL:
p.Best = true