Skip to content

Releases: rlmcpherson/s3gof3r

v0.3.2

19 Mar 20:43
Compare
Choose a tag to compare
Exponential backoff and fix for deadlock on failure.

If a part get fails after the configured number of tries,
it will set the getter global error variable. This is checked in the
Read and Close methods, but if the Reader is waiting for a chunk on the
read_ch, this can lead to deadlock. The chunk will never be sent since
it failed, and the find_next_chunk function will be blocked forever.
This adds a quit channel that is closed when a fatal error occurs.
Closing the channel will ensure the select does not block, and the
getter terminates.

Exponential backoff is also implemented for more robust retries on both
gets and puts.

v0.3.0

18 Feb 05:11
Compare
Choose a tag to compare
Update Readme.

v0.2

18 Feb 05:11
Compare
Choose a tag to compare
Add links to compiled binaries for testing.

v0.1.0

08 Aug 05:54
Compare
Choose a tag to compare
Add doc link to Readme