aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-03-08 17:02:47 -0700
committerChris Lu <chris.lu@gmail.com>2020-03-08 17:02:47 -0700
commit1dc30214cbaca4a93285270a29ff77cd3d1f728f (patch)
treef7599aeeed71a8028aacb24a0abb0f5d3ec52e80
parent9b3109a5d88dc4bc3353dae0dff95f3a7890c691 (diff)
downloadseaweedfs-1dc30214cbaca4a93285270a29ff77cd3d1f728f.tar.xz
seaweedfs-1dc30214cbaca4a93285270a29ff77cd3d1f728f.zip
mark encryptVolumeData as not ready
-rw-r--r--weed/command/filer.go2
-rw-r--r--weed/command/server.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/weed/command/filer.go b/weed/command/filer.go
index fb1ee2b0f..b027686b5 100644
--- a/weed/command/filer.go
+++ b/weed/command/filer.go
@@ -52,7 +52,7 @@ func init() {
f.dirListingLimit = cmdFiler.Flag.Int("dirListLimit", 100000, "limit sub dir listing size")
f.dataCenter = cmdFiler.Flag.String("dataCenter", "", "prefer to write to volumes in this data center")
f.disableHttp = cmdFiler.Flag.Bool("disableHttp", false, "disable http request, only gRpc operations are allowed")
- f.cipher = cmdFiler.Flag.Bool("encryptVolumeData", false, "encrypt data on volume servers")
+ f.cipher = cmdFiler.Flag.Bool("work_in_progress_encryptVolumeData", false, "<not ready> encrypt data on volume servers")
}
var cmdFiler = &Command{
diff --git a/weed/command/server.go b/weed/command/server.go
index 560b90037..ea2844db9 100644
--- a/weed/command/server.go
+++ b/weed/command/server.go
@@ -81,7 +81,7 @@ func init() {
filerOptions.disableDirListing = cmdServer.Flag.Bool("filer.disableDirListing", false, "turn off directory listing")
filerOptions.maxMB = cmdServer.Flag.Int("filer.maxMB", 32, "split files larger than the limit")
filerOptions.dirListingLimit = cmdServer.Flag.Int("filer.dirListLimit", 1000, "limit sub dir listing size")
- filerOptions.cipher = cmdServer.Flag.Bool("filer.encryptVolumeData", false, "encrypt data on volume servers")
+ filerOptions.cipher = cmdServer.Flag.Bool("filer.work_in_progress_encryptVolumeData", false, "<not ready> encrypt data on volume servers")
serverOptions.v.port = cmdServer.Flag.Int("volume.port", 8080, "volume server http listen port")
serverOptions.v.publicPort = cmdServer.Flag.Int("volume.port.public", 0, "volume server public port")