diff options
| author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2025-03-31 21:42:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-31 21:42:54 -0700 |
| commit | 216c52e377fb671f659ee7bb968c5b7e2af878db (patch) | |
| tree | dcb86bea892e4e42bd028b682ef79cea76c4f84a /weed/storage/disk_location.go | |
| parent | 1af0b282db8c38fb586e707b910ec54351a15590 (diff) | |
| download | seaweedfs-216c52e377fb671f659ee7bb968c5b7e2af878db.tar.xz seaweedfs-216c52e377fb671f659ee7bb968c5b7e2af878db.zip | |
chore(deps): bump gocloud.dev from 0.40.0 to 0.41.0 (#6679)
* chore(deps): bump gocloud.dev from 0.40.0 to 0.41.0
Bumps [gocloud.dev](https://github.com/google/go-cloud) from 0.40.0 to 0.41.0.
- [Release notes](https://github.com/google/go-cloud/releases)
- [Commits](https://github.com/google/go-cloud/compare/v0.40.0...v0.41.0)
---
updated-dependencies:
- dependency-name: gocloud.dev
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* fix error
* fix printing errors
* Update go.mod
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: chrislu <chris.lu@gmail.com>
Diffstat (limited to 'weed/storage/disk_location.go')
| -rw-r--r-- | weed/storage/disk_location.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/storage/disk_location.go b/weed/storage/disk_location.go index 47f1b3d6f..cc89c4ca1 100644 --- a/weed/storage/disk_location.go +++ b/weed/storage/disk_location.go @@ -290,7 +290,7 @@ func (l *DiskLocation) DeleteCollectionFromDiskLocation(collection string) (e er errBuilder.WriteString("; ") } if errBuilder.Len() > 0 { - e = fmt.Errorf(errBuilder.String()) + e = fmt.Errorf("%s", errBuilder.String()) } return |
