Skip to content
Open
Changes from all commits
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
5 changes: 4 additions & 1 deletion object_store/src/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,10 @@ impl WriteMultipart {
}

pub(crate) fn put_part(&mut self, part: PutPayload) {
self.tasks.spawn(self.upload.put_part(part));
// appereantly doing this inside spawn call, causes a index assignment race,
// to prevent it from happenin we do it here before spawn to ensure that the index is assigned correctly
let task = self.upload.put_part(part);
self.tasks.spawn(task);
}

/// Abort this upload, attempting to clean up any successfully uploaded parts
Expand Down