Describe the bug
Concurrent requests for blocking reactive routes is limited by quarkus.vertx.event-loops-pool-size
Expected behavior
Concurrent requests for blocking reactive routes should be limited by quarkus.vertx.worker-pool-size
Actual behavior
When a blocking route is created with the the Route annotation.
@Route(path = "/blocking-with-annotation", methods = HttpMethod.GET, type = Route.HandlerType.BLOCKING)
Then the concurrent HTTP requests are limited by the number of event loops.
To Reproduce
See ReactiveRoutesTest.java in:
https://github.com/timoesk/quarkus-reactive-routes-issue