Browse Source

avoid unnecessary error message

fix https://github.com/chrislusf/seaweedfs/issues/1611
pull/1616/head
Chris Lu 4 years ago
parent
commit
745ee8d8f3
  1. 2
      weed/command/filer_copy.go

2
weed/command/filer_copy.go

@ -122,7 +122,7 @@ func runCopy(cmd *Command, args []string) bool {
expectedBucket := restPath[:strings.Index(restPath, "/")]
if *copy.collection == "" {
*copy.collection = expectedBucket
} else {
} else if *copy.collection != expectedBucket {
fmt.Printf("destination %s uses collection \"%s\": unexpected collection \"%v\"\n", urlPath, expectedBucket, *copy.collection)
return true
}

Loading…
Cancel
Save