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

--- Comment #6 from qixiaobo...@gmail.com ---

case CLOSE_NOW: {
            // Block further output
            getOutputBuffer().finished = true;
            setErrorState(ErrorState.CLOSE_NOW, null);
            break;
        }

 public void endRequest()
        throws IOException {

        if (!committed) {

            // Send the connector a request for commit. The connector should
            // then validate the headers, send them (using sendHeader) and 
            // set the filters accordingly.
            response.action(ActionCode.COMMIT, null);

        }

        if (finished)
            return;

        if (lastActiveFilter != -1)
            activeFilters[lastActiveFilter].end();
        finished = true;
    }

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