This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 0d6ddca23bd Revert "Upgrade Nats Image for test-infra to version
2.9.0" (#8416)
0d6ddca23bd is described below
commit 0d6ddca23bd8a94f70433483e3f124c9c91bd794
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Fri Sep 23 11:29:19 2022 +0200
Revert "Upgrade Nats Image for test-infra to version 2.9.0" (#8416)
This reverts commit e1695527bd6869b77c23403df28ae3743bfd0fa8.
Container for 2.9.0 seems to break TLS tests. It appears something may
have changed on the new version and it needs to be adjusted to work
with our tests.
---
.../camel/test/infra/nats/services/NatsLocalContainerService.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/test-infra/camel-test-infra-nats/src/test/java/org/apache/camel/test/infra/nats/services/NatsLocalContainerService.java
b/test-infra/camel-test-infra-nats/src/test/java/org/apache/camel/test/infra/nats/services/NatsLocalContainerService.java
index 8e89e023f21..f7eb937fe99 100644
---
a/test-infra/camel-test-infra-nats/src/test/java/org/apache/camel/test/infra/nats/services/NatsLocalContainerService.java
+++
b/test-infra/camel-test-infra-nats/src/test/java/org/apache/camel/test/infra/nats/services/NatsLocalContainerService.java
@@ -24,7 +24,7 @@ import org.testcontainers.containers.GenericContainer;
import org.testcontainers.containers.wait.strategy.Wait;
public class NatsLocalContainerService implements NatsService,
ContainerService<GenericContainer> {
- public static final String CONTAINER_IMAGE = "nats:2.9.0";
+ public static final String CONTAINER_IMAGE = "nats:2.8.4";
public static final String CONTAINER_NAME = "nats";
private static final int PORT = 4222;