This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch CAMEL-23187 in repository https://gitbox.apache.org/repos/asf/camel.git
commit e08b4f81699259d6f54c0dac4eb3325b767658ea Author: Guillaume Nodet <[email protected]> AuthorDate: Wed Mar 18 15:43:13 2026 +0100 CAMEL-23187: Fix RunCommandITCase.runWithProperties timeout The test used a hardcoded 5-second timeout for checkLogContains, while all other tests in the class use the default (60 seconds). 5 seconds is too short for JBang CLI startup + property loading in CI environments. Remove the explicit timeout to use the default. Co-Authored-By: Claude Opus 4.6 <[email protected]> --- .../src/test/java/org/apache/camel/dsl/jbang/it/RunCommandITCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/RunCommandITCase.java b/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/RunCommandITCase.java index c202246a8ebc..07a26e18aa5c 100644 --- a/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/RunCommandITCase.java +++ b/dsl/camel-jbang/camel-jbang-it/src/test/java/org/apache/camel/dsl/jbang/it/RunCommandITCase.java @@ -77,7 +77,7 @@ public class RunCommandITCase extends JBangTestSupport { executeBackground(String.format( "run %s/route-props.yaml --property=a=a --property=b=b --properties=%s/route-props.properties", mountPoint(), mountPoint())); - checkLogContains("Hello Camel with properties a=a b=b my-key=my-val", 5); + checkLogContains("Hello Camel with properties a=a b=b my-key=my-val"); } @Test
