Browse Source

Merge pull request #2701 from guo-sj/fix_bugs_in_return_value

original_weed_mount
Chris Lu 3 years ago
committed by GitHub
parent
commit
6834df77a0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      weed/shell/command_volume_vacuum.go

2
weed/shell/command_volume_vacuum.go

@ -32,7 +32,7 @@ func (c *commandVacuum) Do(args []string, commandEnv *CommandEnv, writer io.Writ
volumeVacuumCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
garbageThreshold := volumeVacuumCommand.Float64("garbageThreshold", 0.3, "vacuum when garbage is more than this limit")
if err = volumeVacuumCommand.Parse(args); err != nil {
return nil
return
}
if err = commandEnv.confirmIsLocked(args); err != nil {

Loading…
Cancel
Save