Skip to content

Commit 2763bc3

Browse files
committed
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
1 parent 5cac6cf commit 2763bc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-pulsar-test/src/main/java/org/springframework/pulsar/test/support/PulsarTestContainerSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface PulsarTestContainerSupport {
3333
PulsarContainer PULSAR_CONTAINER = new PulsarContainer(getPulsarImage());
3434

3535
static DockerImageName getPulsarImage() {
36-
return DockerImageName.parse("apachepulsar/pulsar:latest");
36+
return DockerImageName.parse("apachepulsar/pulsar:3.3.4");
3737
}
3838

3939
@BeforeAll

0 commit comments

Comments
 (0)