]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove some -trunk foo-nis
authorJim Jagielski <jim@apache.org>
Wed, 6 May 2009 14:50:52 +0000 (14:50 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 6 May 2009 14:50:52 +0000 (14:50 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/httpd-2.2-proxy@772290 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy.c

index 3cebc382b13833a67b9ee2607adf1f8573fb24db..592f6352398bd5dc8e64955f875f3d0fa97b0629 100644 (file)
@@ -293,9 +293,6 @@ static const char *set_worker_param(apr_pool_t *p,
         worker->conn_timeout = timeout;
         worker->conn_timeout_set = 1;
     }
-    else if (!strcasecmp(key, "flusher")) {
-        worker->flusher = apr_pstrdup(p, val);
-    }
     else {
         return "unknown Worker parameter";
     }
@@ -1006,7 +1003,6 @@ static int proxy_handler(request_rec *r)
         ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
                      "Running scheme %s handler (attempt %d)",
                      scheme, attempts);
-        AP_PROXY_RUN(r, worker, conf, url, attempts);
         access_status = proxy_run_scheme_handler(r, worker, conf,
                                                  url, NULL, 0);
         if (access_status == OK)
@@ -1057,7 +1053,6 @@ cleanup:
     ap_proxy_post_request(worker, balancer, r, conf);
 
     proxy_run_request_status(&access_status, r);
-    AP_PROXY_RUN_FINISHED(r, attempts, access_status);
 
     return access_status;
 }