Set timeout for r2dbc test (#8270)
This commit is contained in:
parent
e03aaed32c
commit
2dfe64a08b
|
@ -147,7 +147,7 @@ public abstract class AbstractR2dbcStatementTest {
|
||||||
.flatMapMany(result -> result.map((row, metadata) -> ""))
|
.flatMapMany(result -> result.map((row, metadata) -> ""))
|
||||||
.concatWith(Mono.from(connection.close()).cast(String.class)))
|
.concatWith(Mono.from(connection.close()).cast(String.class)))
|
||||||
.doFinally(e -> getTesting().runWithSpan("child", () -> {}))
|
.doFinally(e -> getTesting().runWithSpan("child", () -> {}))
|
||||||
.blockLast();
|
.blockLast(Duration.ofMinutes(1));
|
||||||
});
|
});
|
||||||
|
|
||||||
getTesting()
|
getTesting()
|
||||||
|
|
Loading…
Reference in New Issue