diff options
| author | MeenakshiSachdeva <80676020+MeenakshiSachdeva@users.noreply.github.com> | 2024-06-10 23:46:29 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-10 11:16:29 -0700 |
| commit | d2516d99cc4953649dd39d2aa387dd06ff1c1032 (patch) | |
| tree | 64e7566ce03f2c21ea89c5e22a81eb80d54f6fb2 /weed/command/server.go | |
| parent | 1caa012a766dd5fe4a6eb645461a9b10214efbbb (diff) | |
| download | seaweedfs-d2516d99cc4953649dd39d2aa387dd06ff1c1032.tar.xz seaweedfs-d2516d99cc4953649dd39d2aa387dd06ff1c1032.zip | |
Meenakshi fix filer sync (#5672)
* Fix Filer Sync Issue: 5455
* Fix Filer Sync Issue: 5455
Diffstat (limited to 'weed/command/server.go')
| -rw-r--r-- | weed/command/server.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/command/server.go b/weed/command/server.go index 63133b80c..503927629 100644 --- a/weed/command/server.go +++ b/weed/command/server.go @@ -119,6 +119,7 @@ func init() { filerOptions.downloadMaxMBps = cmdServer.Flag.Int("filer.downloadMaxMBps", 0, "download max speed for each download request, in MB per second") filerOptions.diskType = cmdServer.Flag.String("filer.disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag") filerOptions.exposeDirectoryData = cmdServer.Flag.Bool("filer.exposeDirectoryData", true, "expose directory data via filer. If false, filer UI will be innaccessible.") + filerOptions.joinExistingFiler = cmdServer.Flag.Bool("filer.joinExistingFiler", false, "enable if new filer wants to join existing cluster") serverOptions.v.port = cmdServer.Flag.Int("volume.port", 8080, "volume server http listen port") serverOptions.v.portGrpc = cmdServer.Flag.Int("volume.port.grpc", 0, "volume server grpc listen port") |
