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

roryqi pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git

commit 52100c4d87fb04579b7b4a3415f10da7c68e8005
Author: Junfan Zhang <[email protected]>
AuthorDate: Mon May 6 11:27:58 2024 +0800

    [MINOR] chore(rust): disable flaky test of local_store_test (#1674)
    
    ### What changes were proposed in this pull request?
    
    Disable the flaky test of local_store_test
    
    ### Why are the changes needed?
    
    I don't find out the flaky root cause for this test case, so disable it to 
avoid continous failure
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Neen't
---
 rust/experimental/server/src/store/localfile.rs | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/rust/experimental/server/src/store/localfile.rs 
b/rust/experimental/server/src/store/localfile.rs
index 8f81e5c81..27852e20a 100644
--- a/rust/experimental/server/src/store/localfile.rs
+++ b/rust/experimental/server/src/store/localfile.rs
@@ -435,7 +435,7 @@ mod test {
     use crate::error::WorkerError;
     use crate::store::{PartitionedDataBlock, ResponseData, ResponseDataIndex, 
Store};
     use bytes::{Buf, Bytes, BytesMut};
-    use log::info;
+    use log::{error, info};
 
     fn create_writing_ctx() -> WritingViewContext {
         let uid = PartitionedUId {
@@ -596,6 +596,7 @@ mod test {
     }
 
     #[test]
+    #[ignore]
     fn local_store_test() {
         let temp_dir = tempdir::TempDir::new("test_local_store").unwrap();
         let temp_path = temp_dir.path().to_str().unwrap().to_string();
@@ -654,6 +655,7 @@ mod test {
 
             let read_result = local_store.get(reading_ctx).await;
             if read_result.is_err() {
+                error!("failed to get the localfile data: {:?}", 
read_result.err());
                 panic!()
             }
 

Reply via email to