Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/src/services/s3/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1150,9 +1150,9 @@ impl Access for S3Backend {
self.core
.s3_get_object_request(path, BytesRange::default(), &v)
}
PresignOperation::Write(_) => {
PresignOperation::Write(v) => {
self.core
.s3_put_object_request(path, None, &OpWrite::default(), Buffer::new())
.s3_put_object_request(path, None, &v, Buffer::new())
}
PresignOperation::Delete(_) => Err(Error::new(
ErrorKind::Unsupported,
Expand Down
Loading