jamesnetherton commented on code in PR #5719: URL: https://github.com/apache/camel-quarkus/pull/5719#discussion_r1478320512
########## integration-tests/infinispan-common/src/test/java/org/apache/camel/quarkus/component/infinispan/common/InfinispanCommonServerTestResource.java: ########## @@ -32,8 +32,9 @@ public class InfinispanCommonServerTestResource implements QuarkusTestResourceLi protected static final String USER = "camel"; protected static final String PASS = "camel"; private static final Logger LOGGER = LoggerFactory.getLogger(InfinispanCommonServerTestResource.class); - private static final String CONTAINER_IMAGE = ConfigProvider.getConfig().getValue("infinispan.container.image", - String.class); + private static final String CONTAINER_IMAGE = ConfigProvider + .getConfig().getOptionalValue("infinispan.container.image", + String.class).orElse("quay.io/infinispan-test/server:14.0.x"); Review Comment: I'd prefer our `main` branch to only run with stable image tags. We have a dedicated branch & nightly CI build for testing the latest Quarkus SNAPSHOT. I could tweak it to override the image with the alternatives you mentioned. -- 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: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org