This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 9ee736e5392 CAMEL-18998: fully disabling the tests as more investigation is needed 9ee736e5392 is described below commit 9ee736e53927f8914f232201fad05a3d3f498b0c Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Tue Feb 14 09:29:55 2023 +0100 CAMEL-18998: fully disabling the tests as more investigation is needed --- .../file/remote/integration/FromFileToFtpSplitParallelIT.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFileToFtpSplitParallelIT.java b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFileToFtpSplitParallelIT.java index c6f28d1c93e..c5c470fcb6b 100644 --- a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFileToFtpSplitParallelIT.java +++ b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/integration/FromFileToFtpSplitParallelIT.java @@ -29,9 +29,9 @@ import org.apache.camel.component.mock.MockEndpoint; import org.apache.camel.spi.ThreadPoolProfile; import org.junit.jupiter.api.Assumptions; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; -import org.junit.jupiter.api.condition.DisabledIfSystemProperty; import org.junit.jupiter.api.io.TempDir; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -39,8 +39,7 @@ import org.slf4j.LoggerFactory; import static org.junit.jupiter.api.Assertions.assertDoesNotThrow; @Tag("not-parallel") -@DisabledIfSystemProperty(named = "ci.env.name", matches = "apache.org", - disabledReason = "Apache CI nodes are too resource constrained for this test") +@Disabled("Disabled due to CAMEL-18998") class FromFileToFtpSplitParallelIT extends FtpServerTestSupport { private static final Logger LOG = LoggerFactory.getLogger(FromFileToFtpSplitParallelIT.class);