scsc
scsc
There is also the opposite reason: it often doesn't start autocompletion at all until you type some random characters. You don't always know the first character of the code that...
@sbordet Thanks, I understand we may _typically_ allow more maxThreads than exactly just `leased` + `requestCount`, but "_more_" is still ambiguous, like, should the upper boundary be 2-times the request...
Regarding `Handler.Abstract.NonBlocking`, I'm not sure what do you mean by my example not having more than 1 request at a time, this is the output I'm getting: ``` Started Handle...
> but you still have not explained your use case: why you want to limit maxThreads? I confirmed that our primary reasoning at this moment is security. If any component...
By the way, just for the record (and for you to test the fix), I've reproduced one more bug under the same condition - i.e. if `maxThreads` is set to...
> How is it that configuring the thread pool at a minimum becomes a fail-safe? > > what upper boundary would you expect users to use? I'm leaving the examples...
@gregw Just curious: is there also no plan to mention this bug in the doc+javadoc, so that newcomers never use this setup until it's fixed? (I also imagine that one...
Well, the bugs I'm aware of are namely the lack of a FIFO guarantee and falsely ignoring `qosHandler.setMaxRequestCount(1)`. It's just about being explicit in the specification by describing the current...
These errors can be suppressed by `lombok.extern.findbugs.addSuppressFBWarnings = true` in `lombok.config`, but it would be good to know what alternatives do we have if we want a safe implementation. Delomboked...
But there are no other threads accessing that variable anywhere in the code. Surely if "future maintainers" introduce an unsafe usage of the same variable, only then would this bug...