Skip to content

Commit 15a19d2

Browse files
authored
Merge pull request quarkusio#36420 from ahus1/is-36419-blocking-health-checks-should-be-parallelized
Allow parallel execution of blocking health checks
2 parents 4f65661 + bd37cf3 commit 15a19d2

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)