Skip to content

Commit bd37cf3

Browse files
committed
Allow parallel execution of blocking health checks
Closes quarkusio#36419
1 parent 25eb435 commit bd37cf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/smallrye-health/runtime/src/main/java/io/quarkus/smallrye/health/runtime/QuarkusAsyncHealthCheckFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public QuarkusAsyncHealthCheckFactory(Vertx vertx) {
2929
public Uni<HealthCheckResponse> callSync(HealthCheck healthCheck) {
3030
Uni<HealthCheckResponse> healthCheckResponseUni = super.callSync(healthCheck);
3131
return BlockingOperationControl.isBlockingAllowed() ? healthCheckResponseUni
32-
: healthCheckResponseUni.runSubscriptionOn(MutinyHelper.blockingExecutor(vertx));
32+
: healthCheckResponseUni.runSubscriptionOn(MutinyHelper.blockingExecutor(vertx, false));
3333
}
3434

3535
@Override

0 commit comments

Comments
 (0)