[
https://issues.apache.org/jira/browse/CAMEL-21151?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Adriano Machado updated CAMEL-21151:
------------------------------------
Description:
Multiple tests are failing on MacOS using Java 21.0.4 on the main branch.
For `camel-openapi-java`, running `MyClass.java` reproduces the failing issue.
{code:java}
import java.text.SimpleDateFormat;public class MyClass {
public static void main(String args[]) {
String value = "2023-01-01 UTC";
try {
System.out.println("String value: " + value + "; date value: " + new
SimpleDateFormat("yyyy-MM-dd Z").parse(value));
} catch (Exception ignored) {}
}
} {code}
For `camel-jms`, it is apparently failing due to connection issues to the
container used in the test.
For `camel-opentelemetry`, I think the issue is related to CAMEL-19667, which
[https://github.com/apache/camel/pull/15182] introduced test improvements.
was:
Multiple tests are failing on MacOS using Java 21.0.4 on the main branch.
For `camel-openapi-java`, running `MyClass.java` reproduces the failing issue.
{code:java}
import java.text.SimpleDateFormat;public class MyClass {
public static void main(String args[]) {
String value = "2023-01-01 UTC";
try {
System.out.println("String value: " + value + "; date value: " + new
SimpleDateFormat("yyyy-MM-dd Z").parse(value));
} catch (Exception ignored) {}
}
} {code}
For `camel-jms`, it is apparently failing due to connection issues to the
container, perhaps because there's no image for arm64 for Artemis?
For `camel-opentelemetry`, I think the issue is related to CAMEL-19667, which
[https://github.com/apache/camel/pull/15182] introduced test improvements.
> Build is failing on os MacOS with multiple tests failing
> --------------------------------------------------------
>
> Key: CAMEL-21151
> URL: https://issues.apache.org/jira/browse/CAMEL-21151
> Project: Camel
> Issue Type: Bug
> Components: camel-jms, camel-openapi-java, camel-opentelemetry
> Affects Versions: 4.8.0
> Reporter: Adriano Machado
> Priority: Major
>
> Multiple tests are failing on MacOS using Java 21.0.4 on the main branch.
> For `camel-openapi-java`, running `MyClass.java` reproduces the failing issue.
> {code:java}
> import java.text.SimpleDateFormat;public class MyClass {
> public static void main(String args[]) {
> String value = "2023-01-01 UTC";
> try {
> System.out.println("String value: " + value + "; date value: " + new
> SimpleDateFormat("yyyy-MM-dd Z").parse(value));
> } catch (Exception ignored) {}
> }
> } {code}
> For `camel-jms`, it is apparently failing due to connection issues to the
> container used in the test.
> For `camel-opentelemetry`, I think the issue is related to CAMEL-19667, which
> [https://github.com/apache/camel/pull/15182] introduced test improvements.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)