aboutsummaryrefslogtreecommitdiff
path: root/weed/filer/filer.go
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2020-11-11 22:09:41 -0800
committerGitHub <noreply@github.com>2020-11-11 22:09:41 -0800
commit827930e2492280c80a1e4dbe2a4e07bf4c7447e5 (patch)
tree8de75aa01a8cec976c546bc64119b4a09b0f3ea8 /weed/filer/filer.go
parent4300ca814219105b5900ebeea28ee2d6a4ca34c2 (diff)
parent0880aff224976ba1a22f7f1d815a35f2556165dd (diff)
downloadseaweedfs-827930e2492280c80a1e4dbe2a4e07bf4c7447e5.tar.xz
seaweedfs-827930e2492280c80a1e4dbe2a4e07bf4c7447e5.zip
Merge pull request #1610 from kmlebedev/prefer_read_in_this_dc
prefer to read from volumes in this data center
Diffstat (limited to 'weed/filer/filer.go')
-rw-r--r--weed/filer/filer.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filer/filer.go b/weed/filer/filer.go
index 35f4cdc6a..0c4d610c5 100644
--- a/weed/filer/filer.go
+++ b/weed/filer/filer.go
@@ -44,9 +44,9 @@ type Filer struct {
}
func NewFiler(masters []string, grpcDialOption grpc.DialOption,
- filerHost string, filerGrpcPort uint32, collection string, replication string, notifyFn func()) *Filer {
+ filerHost string, filerGrpcPort uint32, collection string, replication string, dataCenter string, notifyFn func()) *Filer {
f := &Filer{
- MasterClient: wdclient.NewMasterClient(grpcDialOption, "filer", filerHost, filerGrpcPort, masters),
+ MasterClient: wdclient.NewMasterClient(grpcDialOption, "filer", filerHost, filerGrpcPort, dataCenter, masters),
fileIdDeletionQueue: util.NewUnboundedQueue(),
GrpcDialOption: grpcDialOption,
}