Commit 3cc832d5 authored by Stefan Eissing's avatar Stefan Eissing
Browse files

Merge of r1735611 from trunk:

mod_http2: refrain from unnecessary flushes on master connection


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1735620 13f79535-47bb-0310-9956-ffa450edef68
parent d7e2b5ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -265,7 +265,7 @@ static apr_status_t h2_conn_io_flush_int(h2_conn_io *io, int flush, int eoc)
    pass_out_ctx ctx;
    apr_bucket *b;
    
    if (!flush && io->buflen == 0 && APR_BRIGADE_EMPTY(io->output)) {
    if (io->buflen == 0 && APR_BRIGADE_EMPTY(io->output)) {
        return APR_SUCCESS;
    }