Skip to content

Commit

Permalink
Set timeout for r2dbc test (#8270)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit authored Apr 11, 2023
1 parent e03aaed commit 2dfe64a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void testQueries(Parameter parameter) {
.flatMapMany(result -> result.map((row, metadata) -> ""))
.concatWith(Mono.from(connection.close()).cast(String.class)))
.doFinally(e -> getTesting().runWithSpan("child", () -> {}))
.blockLast();
.blockLast(Duration.ofMinutes(1));
});

getTesting()
Expand Down

0 comments on commit 2dfe64a

Please sign in to comment.