Plawn

Results 20 comments of Plawn

Hello, after even more debugging I found out, that the issue is having too many listeners, or at list the issue appears when i have 5 or more listeners

Hello, Here is the reproducer https://github.com/Plawn/redis-quarkus-reproducer here is the main test file https://github.com/Plawn/redis-quarkus-reproducer/blob/master/src/main/java/org/acme/HttpCacheProvider.java To test: just mvn quarkus:dev When having too many listener there is a timeout More over, the...

Ok I see, in the redis documentation it stated that up to 10 000 listeners could listen to the same channel, so I did not expect this kind of issue....

Hello ! Yes, If I don't mark the bean creating the redis subscriber with @Startup (like in the example), I will have a vertx null context exception.

> I believe I reproduced it: > > ``` > 2022-08-18 11:25:20,674 WARN [io.net.uti.con.AbstractEventExecutor] (vert.x-eventloop-thread-11) A task raised an exception. Task: io.vertx.core.impl.EventLoopContext$$Lambda$1042/0x00000008007fef90@1dac7cf9: java.lang.IllegalArgumentException: Parameter 'context' may not be null >...

Is it really necessary ? TLS termination should be done by the ingress or the reverse proxy, it should be the responsabilty of the application

up for this feature ?

I have a main app that controls the Application instance and a main Router Then it delegates other parts of the app by creating a router and adding it to...

If the events are lost, it's not an issue, it's up to the subApp and the mainApp to ensure the router is unmounted at a correct moment. It should not...