Skip to content

Commit

Permalink
Update object_store/src/integration.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb authored Feb 2, 2025
1 parent f954bc1 commit a246ba5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions object_store/src/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1216,6 +1216,7 @@ pub async fn multipart_out_of_order(storage: &dyn ObjectStore) {
let fut1 = multipart_upload.put_part(part1.into());
let fut2 = multipart_upload.put_part(part2.into());
let fut3 = multipart_upload.put_part(part3.into());
// note order is 2,3,1 , different than the parts were created in
fut2.await.unwrap();
fut3.await.unwrap();
fut1.await.unwrap();
Expand Down

0 comments on commit a246ba5

Please sign in to comment.