aboutsummaryrefslogtreecommitdiff
path: root/weed/command/server.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2019-04-23 23:58:52 -0700
committerChris Lu <chris.lu@gmail.com>2019-04-23 23:58:52 -0700
commit21fe5bde7cf0e619b4d9f2b2a15f8541988a646b (patch)
treeaa3ff9c2ff76511b68de06601e5236ccbd6f9461 /weed/command/server.go
parent067b9357630e79cdaa5117243f9a8adc21dc11a1 (diff)
downloadseaweedfs-21fe5bde7cf0e619b4d9f2b2a15f8541988a646b.tar.xz
seaweedfs-21fe5bde7cf0e619b4d9f2b2a15f8541988a646b.zip
filer: remove customizable grpc port, fixed to filer port + 10000
Diffstat (limited to 'weed/command/server.go')
-rw-r--r--weed/command/server.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/weed/command/server.go b/weed/command/server.go
index a56944b48..a5d2ddd21 100644
--- a/weed/command/server.go
+++ b/weed/command/server.go
@@ -80,7 +80,6 @@ func init() {
serverOptions.cpuprofile = cmdServer.Flag.String("cpuprofile", "", "cpu profile output file")
filerOptions.collection = cmdServer.Flag.String("filer.collection", "", "all data will be stored in this collection")
filerOptions.port = cmdServer.Flag.Int("filer.port", 8888, "filer server http listen port")
- filerOptions.grpcPort = cmdServer.Flag.Int("filer.port.grpc", 0, "filer grpc server listen port, default to http port + 10000")
filerOptions.publicPort = cmdServer.Flag.Int("filer.port.public", 0, "filer server public http listen port")
filerOptions.defaultReplicaPlacement = cmdServer.Flag.String("filer.defaultReplicaPlacement", "", "Default replication type if not specified during runtime.")
filerOptions.redirectOnRead = cmdServer.Flag.Bool("filer.redirectOnRead", false, "whether proxy or redirect to volume server during file GET request")