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

Mark Thomas <ma...@apache.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Mark Thomas <ma...@apache.org> ---
There is no Tomcat bug here.

The test case makes the (invalid) assumption that the network buffers will fill
up and isReady() will return false. They don't.

Essentially the code enters an infinite loop here:

while(output.isReady()) {
    output.write(bytes);
}

There are multiple ways you van observe this:
- enable debug logging for the HTTP/2 (conf/logging.propeties)
- watch network traffic with Wireshark or similar
- debug Tomcat

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

Reply via email to