From 25d6310307b8ac29b72122ded6b975b06b4abf95 Mon Sep 17 00:00:00 2001 From: chrislu Date: Thu, 22 May 2025 09:56:31 -0700 Subject: [PATCH] fix error format --- weed/command/fuse.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weed/command/fuse.go b/weed/command/fuse.go index 92ccf4673..9832b4f72 100644 --- a/weed/command/fuse.go +++ b/weed/command/fuse.go @@ -110,11 +110,11 @@ func runFuse(cmd *Command, args []string) bool { masterProcess = false if parsed, err := strconv.ParseInt(parameter.value, 10, 64); err == nil { 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) } else { - panic(fmt.Errorf("parent PID %s is invalid", err)) + panic(fmt.Errorf("parent PID %s is invalid: %w", parameter.value, err)) } case "arg0": mountOptions.dir = ¶meter.value