1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-03 23:56:41 +02:00

break import cycle

This commit is contained in:
Chris Lu 2020-11-01 02:28:11 -08:00
parent 4609644658
commit ef908e166b

View file

@ -5,7 +5,6 @@ import (
"math/rand"
"time"
"github.com/chrislusf/seaweedfs/weed/filer"
"github.com/chrislusf/seaweedfs/weed/util"
"google.golang.org/grpc"
@ -152,7 +151,7 @@ func (mc *MasterClient) tryConnectToMaster(master string) (nextHintedLeader stri
}
func (mc *MasterClient) WithClient(fn func(client master_pb.SeaweedClient) error) error {
return util.Retry("master grpc", filer.ReadWaitTime, func() error {
return util.Retry("master grpc", 6*time.Second, func() error {
for mc.currentMaster == "" {
time.Sleep(3 * time.Second)
}