Hi,
After upgrading Quarkus to 2.13.3.Final in Keycloak, we start experiencing test failures in our GitHub Action Workflow indicating that the event loop thread is blocking:
```
2022-10-25 18:05:17,128 WARN [io.vertx.core.impl.BlockedThreadChecker] (vertx-blocked-thread-checker) Thread Thread[vert.x-eventloop-thread-0,5,main] has been blocked for 2136 ms, time limit is 2000 ms: io.vertx.core.VertxException: Thread blocked
at io.vertx.core.http.impl.Http1xServerRequest.onEnd(Http1xServerRequest.java:573)
```
The issue can not be reproduced locally and we are still working to make it happen.
From what I've read so far, the `BlockedThreadChecker` is not always accurate about the place where the code is blocking and the fact it is blocking on a `synchronized` block around the `Http1xServerConnection` is suspicious.
Please, correct me if I'm wrong but the connection is shared across threads, right? Any idea about what might be causing that lock if it really makes sense?
I'm wondering if you have some hint about any change that might be causing that message to happen.
For now, we are downgrading Quarkus to 2.12.3.Final.
Best regards.
Pedro Igor