View | Details | Raw Unified | Return to bug 61488
Collapse All | Expand All

(-)a/modules/proxy/mod_proxy_http.c (-1 / +2 lines)
Lines 1264-1270 apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, Link Here
1264
                apr_table_setn(r->notes, "proxy_timedout", "1");
1264
                apr_table_setn(r->notes, "proxy_timedout", "1");
1265
                ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(01103) "read timeout");
1265
                ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(01103) "read timeout");
1266
                if (do_100_continue) {
1266
                if (do_100_continue) {
1267
                    return ap_proxyerror(r, HTTP_SERVICE_UNAVAILABLE, "Timeout on 100-Continue");
1267
                    return ap_proxyerror(r, HTTP_GATEWAY_TIME_OUT, "Timeout on 100-Continue");
1268
                }
1268
                }
1269
            }
1269
            }
1270
            /*
1270
            /*
Lines 1510-1515 apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, Link Here
1510
                && (r->status == HTTP_CONTINUE)
1510
                && (r->status == HTTP_CONTINUE)
1511
                && (worker->s->ping_timeout != old_timeout)) {
1511
                && (worker->s->ping_timeout != old_timeout)) {
1512
                    apr_socket_timeout_set(backend->sock, old_timeout);
1512
                    apr_socket_timeout_set(backend->sock, old_timeout);
1513
                    do_100_continue = 0;
1513
            }
1514
            }
1514
        }
1515
        }
1515
        else {
1516
        else {

Return to bug 61488