JiriOndrusek commented on code in PR #7247:
URL: https://github.com/apache/camel-quarkus/pull/7247#discussion_r2038950838
##########
integration-tests/beanio/src/main/java/org/apache/camel/quarkus/component/beanio/it/BeanioResource.java:
##########
@@ -50,7 +51,11 @@
@Path("/beanio")
public class BeanioResource {
- public static final SimpleDateFormat FORMATTER = new
SimpleDateFormat("yyyy-MM-dd");
+ public static SimpleDateFormat FORMATTER = new
SimpleDateFormat("yyyy-MM-dd");
+
+ static {
+ FORMATTER.setTimeZone(TimeZone.getTimeZone("CET"));
+ }
Review Comment:
Honestly, I'm in different zone then you and the test were failing in the
native for me, because the time was changed by 1 hour (I hoped, that this will
fix the problem, but seeing results of the CI, it was not enough).
I think that I need to set the timezone at more places thus making it work.
And I'd like to keep it there, in case you don't see an issue with this
configuration
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]