Francesco Chicchiriccò

Results 20 comments of Francesco Chicchiriccò

@drungrin sorry for late reply: the proposed changes look good to me. Meanwhile, could you please open an issue on [JIRA](https://issues.apache.org/jira/projects/OPENJPA)? @struberg can you take a look?

@drungrin I guess you mean OPENJPA-2794, correct?

The above looks great, thanks! I'll give it a try early next week and report here.

Thanks for you help @vy , worked like a charm. Important note is also to set `prettyPrintEnabled="false"`.

I have no MDC fields (yet?), no Java code to add. Just added the Maven dependency, grabbed your JSON template as above and defined appenders like as follows: ```xml ```

Ah sorry for not reporting: at the moment I don't need neither `logging.googleapis.com/trace` nor `serviceContext` - and they are both reported as `null` in the actual statements, as expected.

yup @kiview sorry for typo about `@Testcontainers` What I was meaning is that I do have some tests annotated by `@Testcontainers` which are running fine when ```xml org.junit.jupiter junit-jupiter 5.8.2...

Here you go: https://github.com/ilgrosso/testcontainers5680 As you can read from `pom.xml`, the default versions are ```xml 5.8.2 2.22.2 ``` So, when you run ```mvn clean test``` you obtain ``` [INFO] -------------------------------------------------------...

My wild guess is that there is some dependency between Testcontainers 1.17.3 and JUnit 5.8.2 as shown by ``` mvn dependency:tree -Djunit.version=5.9.0 [INFO] net.tirasa.test:testcontainers5680:jar:1.0-SNAPSHOT [INFO] +- org.testcontainers:postgresql:jar:1.17.3:test [INFO] | \-...

Additional finding: if adding the following exclude: ```xml org.testcontainers junit-jupiter ${testcontainers.version} org.junit.jupiter junit-jupiter-api test ``` then the test is run even with `-Djunit.version=5.9.0`