diff options
| author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2023-09-18 14:43:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-18 14:43:05 -0700 |
| commit | a04bd4d26fb355fff6447dd8e508fa54f3c6c180 (patch) | |
| tree | d0710c058202d6516bb6057b3e278f65acba7580 /weed/filer/filechunks_read.go | |
| parent | a0b60dd64126ba0b8b7ae89123acc32a7080bba9 (diff) | |
| download | seaweedfs-a04bd4d26fb355fff6447dd8e508fa54f3c6c180.tar.xz seaweedfs-a04bd4d26fb355fff6447dd8e508fa54f3c6c180.zip | |
Bump github.com/rclone/rclone from 1.63.1 to 1.64.0 (#4850)
* Bump github.com/rclone/rclone from 1.63.1 to 1.64.0
Bumps [github.com/rclone/rclone](https://github.com/rclone/rclone) from 1.63.1 to 1.64.0.
- [Release notes](https://github.com/rclone/rclone/releases)
- [Changelog](https://github.com/rclone/rclone/blob/master/RELEASE.md)
- [Commits](https://github.com/rclone/rclone/compare/v1.63.1...v1.64.0)
---
updated-dependencies:
- dependency-name: github.com/rclone/rclone
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* API changes
* 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: Chris Lu <chrislusf@users.noreply.github.com>
Co-authored-by: chrislu <chris.lu@gmail.com>
Diffstat (limited to 'weed/filer/filechunks_read.go')
| -rw-r--r-- | weed/filer/filechunks_read.go | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/weed/filer/filechunks_read.go b/weed/filer/filechunks_read.go index 8b2d36e12..b8768ed63 100644 --- a/weed/filer/filechunks_read.go +++ b/weed/filer/filechunks_read.go @@ -30,14 +30,20 @@ func readResolvedChunks(chunks []*filer_pb.FileChunk, startOffset int64, stopOff isStart: false, }) } - slices.SortFunc(points, func(a, b *Point) bool { + slices.SortFunc(points, func(a, b *Point) int { if a.x != b.x { - return a.x < b.x + return int(a.x - b.x) } if a.ts != b.ts { - return a.ts < b.ts + return int(a.ts - b.ts) } - return !a.isStart + if a.isStart { + return -1 + } + if b.isStart { + return 1 + } + return 0 }) var prevX int64 |
