Commit 64cd7ce0 authored by Jim Jagielski's avatar Jim Jagielski
Browse files

Seems to me that if we have a worker which is usable, we

should return that. Otherwise we have no worker (worker
is NULL) and we should return that or else the if clause
takes care of setting worker correctly.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@111711 13f79535-47bb-0310-9956-ffa450edef68
parent a938adec
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -194,8 +194,6 @@ static proxy_worker *find_session_route(proxy_balancer *balancer,
            if (worker && !PROXY_WORKER_IS_USABLE(worker))
                worker = NULL;
        }
        else
            worker = NULL;
        return worker;
    }
    else