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

--- Comment #7 from Ognjen Blagojevic <ognjen.d.blagoje...@gmail.com> ---
Here is a minimal test case:

    public static void main(String[] argv) throws Exception {
        URL url = new
URL("http://localhost:84/examples/servlets/nonblocking/numberwriter";);
        InputStream urlStream = url.openStream();
        byte b[] = new byte[1000];
        int numRead = urlStream.read(b);
        while (numRead != -1) {
            numRead = urlStream.read(b);
        }
        urlStream.close();
    }

Log messages start to appear some 20-30s, after I execute this test.

-- 
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