Santiago Pericas-Geertsen

Results 212 comments of Santiago Pericas-Geertsen

@danielkec Is the buffer allocation inside Netty or is it this one? https://github.com/oracle/helidon/blob/f418d8e57963da76fc2acc5e6794faecc4e32922/webserver/jersey/src/main/java/io/helidon/webserver/jersey/ResponseWriter.java#L186

So I guess that means we are requesting one more before buffers are released. Perhaps we can stop allocating buffers after a certain (configurable) threshold and wait (sleep) in `ResponseWriter`...

https://github.com/tjquinno/openapi-generator/pull/41

@rmacario I suggest that you use the #helidon-users Slack channel for questions, not a Github issue.

As you know the basic Application isolation provided by Helidon relies on the set of classes returned by `getClasses`. In this example, isolation is seeked by dynamically attempting to register...

Can you confirm that this new access would cover your use case? ``` public boolean configure(FeatureContext context) { Application app = Contexts.context().flatMap(c -> c.get(Application.class)).orElse(null); System.out.println("app = " + app); //...

Closing this issue at this time. We have found a workaround that uses the feature in PR #4745 (targeted for 2.5.3).

@tjquinno I'm assuming we do this to run multiple unit tests classes within a single VM

@BenjaminBuick 1. What have you been using as a client in your testing to reproduce this problem? 2. Does the problem occur when the machine is under heavy load? 3....