Commit 4dba033a authored by Greg Ames's avatar Greg Ames
Browse files

back out the logging of read errors in getline. daedalus was logging

boatloads of "(54)Connection reset by peer: ap_get_brigade() failed" errors.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88553 13f79535-47bb-0310-9956-ffa450edef68
parent b11e11c2
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -522,9 +522,6 @@ AP_CORE_DECLARE(int) ap_getline(char *s, int n, request_rec *r, int fold)
            if ((retval = ap_get_brigade(c->input_filters, b, AP_MODE_BLOCKING)) != APR_SUCCESS ||
                APR_BRIGADE_EMPTY(b)) {
                apr_brigade_destroy(b);
                if (retval != APR_EOF && retval != APR_TIMEUP) {
                    ap_log_rerror(APLOG_MARK, APLOG_ERR, retval, r, "ap_get_brigade() failed");
                }
                return -1;
            }
        }