Skip to content

Commit

Permalink
Update Pulsar to 3.2.0 (#159)
Browse files Browse the repository at this point in the history
Resolves #157

Co-authored-by: onobc <onobc@apache.org>
  • Loading branch information
onobc and onobc authored Feb 5, 2024
1 parent f3b7a24 commit cc27d87
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ junit-jupiter = "5.10.1"
licenser = "0.6.1"
log4j = "2.22.1"
mockito = "5.8.0"
pulsar = "3.1.2"
pulsar = "3.2.0"
rat-gradle = "0.8.0"
reactor = "3.6.2"
slf4j = "2.0.11"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static PulsarClient createPulsarClient() throws PulsarClientException {
}

static DockerImageName getPulsarImage() {
return DockerImageName.parse("apachepulsar/pulsar:3.1.2");
return DockerImageName.parse("apachepulsar/pulsar:3.2.0");
}

}
4 changes: 2 additions & 2 deletions scripts/validate_staging_repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if ! command -v gradle &>/dev/null; then
fi

DOCKER_CONTAINER_NAME=pulsar-standalone-$$
: ${DOCKER_IMAGE_NAME:=apachepulsar/pulsar:3.1.2}
: ${DOCKER_IMAGE_NAME:=apachepulsar/pulsar:3.2.0}

mkdir test-app-reactive-$$
cd test-app-reactive-$$
Expand Down Expand Up @@ -90,7 +90,7 @@ public class HelloPulsarClientReactive {
public static void main(String[] args) throws PulsarClientException, InterruptedException {
// Before running this, start Pulsar within docker with this command:
// docker run -it -p 8080:8080 -p 6650:6650 apachepulsar/pulsar:3.1.2 /pulsar/bin/pulsar standalone -nss -nfw
// docker run -it -p 8080:8080 -p 6650:6650 apachepulsar/pulsar:3.2.0 /pulsar/bin/pulsar standalone -nss -nfw
try (PulsarClient pulsarClient = PulsarClient.builder().serviceUrl("pulsar://localhost:6650").build()) {
Expand Down

0 comments on commit cc27d87

Please sign in to comment.