Skip to content

Commit d5fa0be

Browse files
committed
Upgrade to BlockHound 1.0.2.RELEASE.
1 parent 2069462 commit d5fa0be

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

3-reactive/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>io.projectreactor.tools</groupId>
4747
<artifactId>blockhound</artifactId>
48-
<version>1.0.1.RELEASE</version>
48+
<version>1.0.2.RELEASE</version>
4949
</dependency>
5050
<!-- end::blockhound[] -->
5151

4-reactive/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>io.projectreactor.tools</groupId>
4444
<artifactId>blockhound-junit-platform</artifactId>
45-
<version>1.0.1.RELEASE</version>
45+
<version>1.0.2.RELEASE</version>
4646
<scope>test</scope>
4747
</dependency>
4848
<!-- end::blockhound[] -->
@@ -65,7 +65,7 @@
6565
<dependency>
6666
<groupId>io.projectreactor.tools</groupId>
6767
<artifactId>blockhound-junit-platform</artifactId>
68-
<version>1.0.1.RELEASE</version>
68+
<version>1.0.2.RELEASE</version>
6969
<scope>test</scope>
7070
</dependency>
7171
</dependencies>

5-reactive/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>io.projectreactor.tools</groupId>
5353
<artifactId>blockhound-junit-platform</artifactId>
54-
<version>1.0.1.RELEASE</version>
54+
<version>1.0.2.RELEASE</version>
5555
<scope>test</scope>
5656
</dependency>
5757
<dependency>

6-reactive/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<dependency>
7070
<groupId>io.projectreactor.tools</groupId>
7171
<artifactId>blockhound-junit-platform</artifactId>
72-
<version>1.0.1.RELEASE</version>
72+
<version>1.0.2.RELEASE</version>
7373
<scope>test</scope>
7474
</dependency>
7575
<dependency>

7-reactive/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@
5151
<dependency>
5252
<groupId>org.testcontainers</groupId>
5353
<artifactId>rabbitmq</artifactId>
54-
<version>1.12.2</version>
54+
<version>1.12.5</version>
5555
<scope>test</scope>
5656
</dependency>
5757

5858
<dependency>
5959
<groupId>org.testcontainers</groupId>
6060
<artifactId>junit-jupiter</artifactId>
61-
<version>1.12.2</version>
61+
<version>1.12.5</version>
6262
<scope>test</scope>
6363
</dependency>
6464
<!-- end::testcontainers[] -->
@@ -72,7 +72,7 @@
7272
<dependency>
7373
<groupId>io.projectreactor.tools</groupId>
7474
<artifactId>blockhound-junit-platform</artifactId>
75-
<version>1.0.1.RELEASE</version>
75+
<version>1.0.2.RELEASE</version>
7676
<scope>test</scope>
7777
</dependency>
7878
<dependency>

7-reactive/src/main/java/com/greglturnquist/hackingspringboot/reactive/SpringAmqpItemController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Mono<ResponseEntity<?>> addNewItemUsingSpringAmqp(@RequestBody Mono<Item> item)
5252
return Mono.fromCallable(() -> { // <3>
5353
this.template.convertAndSend( // <4>
5454
"hacking-spring-boot", "new-items-spring-amqp", content);
55-
return ResponseEntity.created(URI.create("/spring-amqp/items")).build(); // <5>
55+
return ResponseEntity.created(URI.create("/items")).build(); // <5>
5656
}).subscribeOn(Schedulers.elastic()); // <6>
5757
});
5858
}

7-reactive/src/test/java/com/greglturnquist/hackingspringboot/reactive/RabbitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void initialize(ConfigurableApplicationContext configurableApplicationCon
6464

6565
// tag::spring-amqp-test[]
6666
@Test
67-
void verifyMessagingThroughSpringAmqp() throws InterruptedException {
67+
void verifyMessagingThroughAmqp() throws InterruptedException {
6868
this.webTestClient.post().uri("/items") // <1>
6969
.bodyValue(new Item("Alf alarm clock", "nothing important", 19.99)) //
7070
.exchange() //

0 commit comments

Comments
 (0)