mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
Improve concurrency for upload streams part 2
This commit is contained in:
parent
bf3c47e457
commit
dc95417846
1 changed files with 5 additions and 0 deletions
|
@ -188,6 +188,7 @@ impl Store for ObjectStore {
|
|||
quick_xml::de::from_reader(&*body).map_err(ObjectError::from)?;
|
||||
let upload_id = &body.upload_id;
|
||||
|
||||
// hack-ish: use async block as Result boundary
|
||||
let res = async {
|
||||
let mut complete = false;
|
||||
let mut part_number = 0;
|
||||
|
@ -230,6 +231,7 @@ impl Store for ObjectStore {
|
|||
.map_err(|_| ObjectError::Etag)?
|
||||
.to_string();
|
||||
|
||||
// early-drop response to close its tracing spans
|
||||
drop(response);
|
||||
|
||||
Ok(etag) as Result<String, Error>
|
||||
|
@ -240,6 +242,9 @@ impl Store for ObjectStore {
|
|||
futures.push(handle);
|
||||
}
|
||||
|
||||
// early-drop stream to allow the next Part to be polled concurrently
|
||||
drop(stream);
|
||||
|
||||
let mut etags = Vec::new();
|
||||
|
||||
for future in futures {
|
||||
|
|
Loading…
Reference in a new issue