summaryrefslogtreecommitdiffhomepage
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/server/server.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkg/server/server.go b/pkg/server/server.go
index 75921ec1..647843da 100644
--- a/pkg/server/server.go
+++ b/pkg/server/server.go
@@ -26,7 +26,7 @@ import (
"time"
"github.com/eapache/channels"
- uuid "github.com/satori/go.uuid"
+ uuid "github.com/google/uuid"
log "github.com/sirupsen/logrus"
"google.golang.org/grpc"
@@ -1996,9 +1996,10 @@ func (s *BgpServer) AddPath(ctx context.Context, r *api.AddPathRequest) (*api.Ad
if err != nil {
return err
}
- id, _ := uuid.NewV4()
- s.uuidMap[id] = pathTokey(path)
- uuidBytes = id.Bytes()
+ if id, err := uuid.NewRandom(); err == nil {
+ s.uuidMap[id] = pathTokey(path)
+ uuidBytes, _ = id.MarshalBinary()
+ }
return nil
}, true)
return &api.AddPathResponse{Uuid: uuidBytes}, err