diff options
| author | chrislu <chris.lu@gmail.com> | 2023-12-22 11:37:15 -0800 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2023-12-22 11:37:15 -0800 |
| commit | 6324062acc3b27ba0fbf1a2238f236e2e8729d5d (patch) | |
| tree | adb46db0949215aa57146144270a0b8b9808264a | |
| parent | e0727071c84cf8f198f0ef402e85d2eecd29d26b (diff) | |
| download | seaweedfs-6324062acc3b27ba0fbf1a2238f236e2e8729d5d.tar.xz seaweedfs-6324062acc3b27ba0fbf1a2238f236e2e8729d5d.zip | |
fix
| -rw-r--r-- | weed/command/filer_copy.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/filer_copy.go b/weed/command/filer_copy.go index 1855e643c..2002cf4c3 100644 --- a/weed/command/filer_copy.go +++ b/weed/command/filer_copy.go @@ -62,7 +62,7 @@ func init() { copy.concurrentChunks = cmdFilerCopy.Flag.Int("concurrentChunks", 8, "concurrent chunk copy goroutines for each file") copy.checkSize = cmdFilerCopy.Flag.Bool("check.size", false, "copy when the target file size is different from the source file") copy.verbose = cmdFilerCopy.Flag.Bool("verbose", false, "print out details during copying") - copy.volumeServerAccess = cmdMount.Flag.String("volumeServerAccess", "direct", "access volume servers by [direct|publicUrl|filerProxy]") + copy.volumeServerAccess = cmdFilerCopy.Flag.String("volumeServerAccess", "direct", "access volume servers by [direct|publicUrl|filerProxy]") } var cmdFilerCopy = &Command{ |
