lanicc opened a new pull request #391:
URL: https://github.com/apache/tomcat/pull/391
Optimize if condition in `AbstractProtocol.startAsyncTimeout()`,
from `if (timeoutFuture == null || (timeoutFuture != null &&
timeoutFuture.isDone()))`
to `if (timeoutFuture == null || timeoutFuture
lanicc closed pull request #390:
URL: https://github.com/apache/tomcat/pull/390
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the
Le 11/12/2020 à 17:56, Michael Osipov a écrit :
> Well, isn't that really a OS vendor problem not ours? We can provide
> grace periods, but that's pretty much it. They need to solve that, not
> us on a volunteer basis.
Note that (most) Debian Developers are volunteers too.
> FreeBSD's port of l
lanicc opened a new pull request #390:
URL: https://github.com/apache/tomcat/pull/390
Optimize if condition in `AbstractProtocol.startAsyncTimeout()`,
from `if (timeoutFuture == null || (timeoutFuture != null &&
timeoutFuture.isDone()))`
to `if (timeoutFuture == null || timeoutFuture
lanicc closed pull request #389:
URL: https://github.com/apache/tomcat/pull/389
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the
lanicc commented on pull request #389:
URL: https://github.com/apache/tomcat/pull/389#issuecomment-745871337
> @lanicc Thanks for the PR!
> Can you please remove the merge commit ?
ok, I will pull a new request
This