Use Pulsar 3.3.4 in PulsarTestContainerSupport

This sets the image tag from `latest` to `3.3.4` in order
to ensure the default tag matches up w/ the version of
Pulsar supported by Spring for Apache Pulsar.

See #1014
This commit is contained in:
Chris Bono
2025-01-21 13:01:34 -06:00
parent 5cac6cfd16
commit 2763bc3ca0

View File

@@ -33,7 +33,7 @@ public interface PulsarTestContainerSupport {
PulsarContainer PULSAR_CONTAINER = new PulsarContainer(getPulsarImage());
static DockerImageName getPulsarImage() {
return DockerImageName.parse("apachepulsar/pulsar:latest");
return DockerImageName.parse("apachepulsar/pulsar:3.3.4");
}
@BeforeAll