Ludovic Orban

Results 180 comments of Ludovic Orban

_(sorry for the confusing previous comment I deleted; it was intended for another issue.)_

Sorry for the delay getting back to you. I spent some time trying to reproduce your problem with Spring Boot and I noticed that there are problems in Jetty 12.0.5...

> So this leak was entirely contained within the test case. Interesting. Wonder if we should document how to turn on Leak tracking in our developer guide? I'm open to...

This requires more investigation as other protocols manage to release their buffers despite the callback not being completed. We, at the very least, need to understand why not FCGI.

On hold until https://github.com/eclipse/jetty.project/issues/10277 is sorted.

@sbordet @gregw @joakime I've reworked these tests by using `Request.addFailureListener()` to detect when the server had a chance to reclaim its resources, identified and fixed the leak in FCGI and...

Also, the following test fails when DEBUG logs are enabled, despite your change: ```java @Test public void testInstallBeanDoesNotEscapeConstructor() { ConcreteClazz c = new ConcreteClazz(); assertThat(c.exception, is(nullValue())); } private static abstract...

I believe we should have added a test like the following as part of #11321. It is up to you to include it in this PR or not, as that...

This requires more investigations as stopping the connector should release any pending buffer not yet handed over to user code.