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 966444f9f62 (chores) camel-jetty: isolate HTTPS tests to reduce flakiness 966444f9f62 is described below commit 966444f9f6226f2e7ab0175a69057275c7c2c4da Author: Otavio R. Piske <angusyo...@gmail.com> AuthorDate: Sun Feb 2 12:36:27 2025 +0100 (chores) camel-jetty: isolate HTTPS tests to reduce flakiness Signed-off-by: Otavio R. Piske <angusyo...@gmail.com> --- .../src/test/java/org/apache/camel/component/jetty/HttpsRouteTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpsRouteTest.java b/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpsRouteTest.java index c8bc7e67156..8eee45a9dd8 100644 --- a/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpsRouteTest.java +++ b/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpsRouteTest.java @@ -42,6 +42,7 @@ import org.eclipse.jetty.util.ssl.SslContextFactory; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.condition.EnabledOnOs; import org.junit.jupiter.api.condition.OS; +import org.junit.jupiter.api.parallel.Isolated; import org.junit.jupiter.api.parallel.ResourceLock; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -53,6 +54,7 @@ import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; +@Isolated @ResourceLock(SSL_SYSPROPS) @EnabledOnOs(value = { OS.LINUX, OS.MAC, OS.FREEBSD, OS.OPENBSD }, architectures = { "amd64", "aarch64", "ppc64le" },