Commit 5a27faef authored by Ruediger Pluem's avatar Ruediger Pluem
Browse files

* Followup patch on r427959:

  Also substitute close_on_recycle with close in mod_proxy_fcgi. This makes
  mod_proxy_fcgi compile again.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@428152 13f79535-47bb-0310-9956-ffa450edef68
parent 785e4c3d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -937,7 +937,7 @@ static int proxy_fcgi_handler(request_rec *r, proxy_worker *worker,
                                             r->server);
        if (status != OK) {
            if (backend) {
                backend->close_on_recycle = 1;
                backend->close = 1;
                ap_proxy_release_connection(FCGI_SCHEME, backend, r->server);
            }
            return status;
@@ -946,12 +946,12 @@ static int proxy_fcgi_handler(request_rec *r, proxy_worker *worker,

    backend->is_ssl = 0;

    /* XXX Setting close_on_recycle to 0 is a great way to end up with
    /* XXX Setting close to 0 is a great way to end up with
     *     timeouts at this point, since we lack good ways to manage the
     *     back end fastcgi processes.  This should be revisited when we
     *     have a better story on that part of things. */

    backend->close_on_recycle = 1;
    backend->close = 1;

    /* Step One: Determine Who To Connect To */
    status = ap_proxy_determine_connection(p, r, conf, worker, backend,