diff options
author | Eric Covener <covener@apache.org> | 2013-08-04 03:24:25 +0200 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2013-08-04 03:24:25 +0200 |
commit | db3fd786f6b4f3e0df70af2d57f83c23bcb67391 (patch) | |
tree | d9f0132a05f36238c7a49d25cb54e449c4bfc695 /modules/ldap | |
parent | add TRACE5 messages around each LDAP retry (diff) | |
download | apache2-db3fd786f6b4f3e0df70af2d57f83c23bcb67391.tar.xz apache2-db3fd786f6b4f3e0df70af2d57f83c23bcb67391.zip |
remove nested retry loop, uldap_connection_open retries.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1510086 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ldap')
-rw-r--r-- | modules/ldap/util_ldap.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c index b275afe166..a048e934bf 100644 --- a/modules/ldap/util_ldap.c +++ b/modules/ldap/util_ldap.c @@ -1115,11 +1115,7 @@ start_over: } if (LDAP_SUCCESS != (result = uldap_connection_open(r, ldc))) { - if (AP_LDAP_IS_SERVER_DOWN(result)) { - failures++; - goto start_over; - } - /* something other than 'server down' */ + /* uldap_connection_open() retried already */ return result; } |