JuliaServices / CloudStore.jl

A simple, consistent, and performant API for interacting with common cloud storage abstractions
Other
16 stars 8 forks source link

Fix a couple off-by-one errors for ranged downloads #22

Closed quinnj closed 1 year ago

quinnj commented 1 year ago

If an object size was 1) larger than default partsize (8MB default) and 2) a perfect power of partSize, then there was a corner case where we tried to do one extra range request for 1 extra byte after we already finished, but this ends up throwing an invalid range request error.