absurdfarce commented on PR #1955: URL: https://github.com/apache/cassandra-java-driver/pull/1955#issuecomment-2338550979
Yup, this looks right to me. I note that we're seeing errors like this on the integration tests: ``` 04:03:27 09:03:27.063 [main] INFO c.d.o.d.api.testinfra.ccm.CcmBridge - CCM Bridge configured with DSE version 6.9.0 04:03:30 [INFO] Running com.datastax.oss.driver.api.core.cloud.CloudIT 04:03:30 [WARNING] Tests run: 1, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0.009 s - in com.datastax.oss.driver.api.core.cloud.CloudIT 04:03:30 09:03:30.301 [main] INFO c.d.o.d.api.testinfra.ccm.CcmBridge - CCM Bridge configured with DSE version 6.9.0 04:03:31 09:03:30.856 [Exec Stream Pumper] ERROR c.d.o.d.api.testinfra.ccm.CcmBridge - ccmerr> 09:03:30,856 ccm WARNING cluster: Java 8 is incompatible to DSE 6.9.0/Cassandra 6.9.0, using Java 11 for the current invocation ``` Pretty sure we're seeing this because we explicitly [set the JDK in use to 1.8](https://github.com/apache/cassandra-java-driver/blob/4.x/Jenkinsfile#L125-L126) before kicking off integration tests. ccm uses that JDK (when we set test JDKs via args to the Maven invocation we're only setting which JVM is used to run the test class) which appears to lead to the error above. At some point in the future we may need to tweak that setup as well but it's fine for now; the log messages don't indicate an error of any kind they're just noise. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

