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 2022/04/06 18:09:35 UTC

[arrow-datafusion] branch master updated: [MINOR] ignore suspicious slow test in Ballista (#2167)

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-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new ea16c30ed [MINOR] ignore suspicious slow test in Ballista (#2167)
ea16c30ed is described below

commit ea16c30ed4bb0461bcc1472ac185bcc759e98ab8
Author: Yang Jiang <37...@users.noreply.github.com>
AuthorDate: Thu Apr 7 02:09:31 2022 +0800

    [MINOR] ignore suspicious slow test in Ballista (#2167)
---
 ballista/rust/executor/src/cpu_bound_executor.rs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ballista/rust/executor/src/cpu_bound_executor.rs b/ballista/rust/executor/src/cpu_bound_executor.rs
index 316d3d19c..d6c53bc42 100644
--- a/ballista/rust/executor/src/cpu_bound_executor.rs
+++ b/ballista/rust/executor/src/cpu_bound_executor.rs
@@ -311,6 +311,8 @@ mod tests {
     }
 
     #[tokio::test]
+    #[ignore]
+    // related https://github.com/apache/arrow-datafusion/issues/2140
     async fn executor_shutdown_while_task_running() {
         let barrier = Arc::new(Barrier::new(2));