Ludovic Orban

Results 180 comments of Ludovic Orban

@wendigo we never managed to reproduce this problem, and the original reporter told us he did not see it happening again after upgrading to 12.0.9. We still need to investigate...

@wendigo have you been hit by this problem, or are you just reviewing known Jetty issues that may impact you? I'm asking because if you need some help in that...

@wendigo do you still see this problem with the latest Jetty 12.0.13? If we want to go to the bottom of this problem, we are going to need your help...

It seems `org.eclipse.jetty.server.ServerConnectorHttpServerTest.testNonBlockingInvocationType()` is failing because of these changes.

@sbordet I personally believe the behavior you described is sane: Jetty needs to reserve some threads for special future requests, so those can't be used to serve new requests: they...

@scscgit About queues, FIFO and fairness you seem to conflate a couple of things: - `ArrayBlockingQueue` guarantees that its elements will get out in FIFO order. But this guarantee is...

Here is a captured thread dump of a JVM stuck in the test that may hang virtually forever on JDK 24: ``` "ForkJoinPool-1-worker-13" #248 [259864] daemon prio=5 os_prio=0 cpu=372.79ms elapsed=6806.87s...

The H2 `SessionContainer` also implements `Graceful`; it shuts down `HTTP2Session.StreamsState` which will make the graceful mechanism wait until `HTTP2Session.StreamsState.terminate()` is called. Now why is `terminate()` not called?

Default graceful timeouts were changed, but the reason why the graceful mechanism never unblock still needs to be investigated.