steve.wei
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
7 additions and
1 deletions
-
weed/server/master_grpc_server.go
|
|
@ -4,6 +4,7 @@ import ( |
|
|
|
"context" |
|
|
|
"errors" |
|
|
|
"fmt" |
|
|
|
"github.com/google/uuid" |
|
|
|
"github.com/seaweedfs/seaweedfs/weed/cluster" |
|
|
|
"net" |
|
|
|
"sort" |
|
|
@ -260,7 +261,12 @@ func (ms *MasterServer) KeepConnected(stream master_pb.Seaweed_KeepConnectedServ |
|
|
|
return ms.informNewLeader(stream) |
|
|
|
} |
|
|
|
|
|
|
|
peerAddress := pb.ServerAddress(req.ClientAddress) |
|
|
|
clientAddress := req.ClientAddress |
|
|
|
// Ensure that the clientAddress is unique.
|
|
|
|
if clientAddress == "" { |
|
|
|
clientAddress = uuid.New().String() |
|
|
|
} |
|
|
|
peerAddress := pb.ServerAddress(clientAddress) |
|
|
|
|
|
|
|
// buffer by 1 so we don't end up getting stuck writing to stopChan forever
|
|
|
|
stopChan := make(chan bool, 1) |
|
|
|