Set timeout for r2dbc test (#8270)

This commit is contained in:
Lauri Tulmin 2023-04-11 13:15:42 +03:00 committed by GitHub
parent e03aaed32c
commit 2dfe64a08b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ public abstract class AbstractR2dbcStatementTest {
.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()