diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2025-07-16 23:39:27 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-16 23:39:27 -0700 |
| commit | 69553e5ba6d46ed924b0c3adc3f8d9666550999a (patch) | |
| tree | 7711c4d9fe1919d2c6eaa841779bcde6e24b0248 /weed/shell/command_s3_clean_uploads.go | |
| parent | a524b4f485ce5aa2f234c742bd7d1e75386f569b (diff) | |
| download | seaweedfs-69553e5ba6d46ed924b0c3adc3f8d9666550999a.tar.xz seaweedfs-69553e5ba6d46ed924b0c3adc3f8d9666550999a.zip | |
convert error fromating to %w everywhere (#6995)
Diffstat (limited to 'weed/shell/command_s3_clean_uploads.go')
| -rw-r--r-- | weed/shell/command_s3_clean_uploads.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/weed/shell/command_s3_clean_uploads.go b/weed/shell/command_s3_clean_uploads.go index c77f3cd74..b9d9bea5e 100644 --- a/weed/shell/command_s3_clean_uploads.go +++ b/weed/shell/command_s3_clean_uploads.go @@ -51,7 +51,7 @@ func (c *commandS3CleanUploads) Do(args []string, commandEnv *CommandEnv, writer var filerBucketsPath string filerBucketsPath, err = readFilerBucketsPath(commandEnv) if err != nil { - return fmt.Errorf("read buckets: %v", err) + return fmt.Errorf("read buckets: %w", err) } var buckets []string @@ -60,7 +60,7 @@ func (c *commandS3CleanUploads) Do(args []string, commandEnv *CommandEnv, writer return nil }, "", false, math.MaxUint32) if err != nil { - return fmt.Errorf("list buckets under %v: %v", filerBucketsPath, err) + return fmt.Errorf("list buckets under %v: %w", filerBucketsPath, err) } for _, bucket := range buckets { @@ -84,7 +84,7 @@ func (c *commandS3CleanUploads) cleanupUploads(commandEnv *CommandEnv, writer io return nil }, "", false, math.MaxUint32) if err != nil { - return fmt.Errorf("list uploads under %v: %v", uploadsDir, err) + return fmt.Errorf("list uploads under %v: %w", uploadsDir, err) } var encodedJwt security.EncodedJwt |
