You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2023/04/25 14:15:43 UTC

[arrow-rs] branch master updated: Fix flaky unknown_length_append (#4123)

This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 31b86b1ae Fix flaky unknown_length_append (#4123)
31b86b1ae is described below

commit 31b86b1ae38ec0b6258c2a484f29e06a93c51612
Author: Raphael Taylor-Davies <17...@users.noreply.github.com>
AuthorDate: Tue Apr 25 10:15:37 2023 -0400

    Fix flaky unknown_length_append (#4123)
---
 object_store/src/local.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/object_store/src/local.rs b/object_store/src/local.rs
index d2553d46f..286853da2 100644
--- a/object_store/src/local.rs
+++ b/object_store/src/local.rs
@@ -1406,6 +1406,7 @@ mod not_wasm_tests {
         let mut writer = integration.append(&location).await.unwrap();
 
         writer.write_all(data.as_ref()).await.unwrap();
+        writer.flush().await.unwrap();
 
         let read_data = integration
             .get(&location)