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 b37fa06c7a8303c0b98872a6f23d5f2ab0388a50 Author: Junfan Zhang <[email protected]> AuthorDate: Sat Apr 13 20:24:14 2024 +0800 [MINOR] chore(rust): disable flaky test of test_ticket_manager (#1637) ### What changes were proposed in this pull request? Disable flaky test of test_ticket_manager ### Why are the changes needed? I haven't found the root cause of test flaky. so disable it until I fix this. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? needn't --- rust/experimental/server/src/store/mem/ticket.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/experimental/server/src/store/mem/ticket.rs b/rust/experimental/server/src/store/mem/ticket.rs index 0f69d1535..2879dd59d 100644 --- a/rust/experimental/server/src/store/mem/ticket.rs +++ b/rust/experimental/server/src/store/mem/ticket.rs @@ -193,6 +193,7 @@ mod test { } #[test] + #[ignore] fn test_ticket_manager() { let released_size = Arc::new(Mutex::new(0));
