Skip to content

Commit

Permalink
Fix Bucket::get_object_range_to_writer() sync impl
Browse files Browse the repository at this point in the history
  • Loading branch information
jasinb committed Jan 30, 2025
1 parent 7c6fdc0 commit a2db239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s3/src/bucket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ impl Bucket {
}

#[maybe_async::sync_impl]
pub async fn get_object_range_to_writer<T: std::io::Write + Send + ?Sized, S: AsRef<str>>(
pub fn get_object_range_to_writer<T: std::io::Write + Send + ?Sized, S: AsRef<str>>(
&self,
path: S,
start: u64,
Expand Down

0 comments on commit a2db239

Please sign in to comment.