Browse Source

fix error format

pull/6811/head
chrislu 2 weeks ago
parent
commit
25d6310307
  1. 4
      weed/command/fuse.go

4
weed/command/fuse.go

@ -110,11 +110,11 @@ func runFuse(cmd *Command, args []string) bool {
masterProcess = false masterProcess = false
if parsed, err := strconv.ParseInt(parameter.value, 10, 64); err == nil { if parsed, err := strconv.ParseInt(parameter.value, 10, 64); err == nil {
if parsed > math.MaxInt || parsed <= 0 { if parsed > math.MaxInt || parsed <= 0 {
panic(fmt.Errorf("parent PID %s is invalid", err))
panic(fmt.Errorf("parent PID %d is invalid", parsed))
} }
mountOptions.fuseCommandPid = int(parsed) mountOptions.fuseCommandPid = int(parsed)
} else { } else {
panic(fmt.Errorf("parent PID %s is invalid", err))
panic(fmt.Errorf("parent PID %s is invalid: %w", parameter.value, err))
} }
case "arg0": case "arg0":
mountOptions.dir = &parameter.value mountOptions.dir = &parameter.value

Loading…
Cancel
Save