You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2022/04/22 10:14:57 UTC

[Bug 66024] NioEndpoint$NioSocketWrapper CountDownLatch locked

https://bz.apache.org/bugzilla/show_bug.cgi?id=66024

--- Comment #1 from he zhang <13...@163.com> ---
spring-boot-starter-web:2.1.4.RELEASE
spring-boot-starter-tomcat:2.1.4.RELEASE
tomcat-embed-core:9.0.16

Fake code:

InflaterInputStream iis = new InflaterInputStream(request.getInputStream());
ByteArrayOutputStream o = new ByteArrayOutputStream(1024);
int i = 1024;
byte[] buf = new byte[i];
while ((i = iis.read(buf, 0, i)) > 0) {
    o.write(buf, 0, i);
}

high volume of requests, exception stack info:

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org