This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/7.0.x by this push: new 7b1a92a Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=63550 7b1a92a is described below commit 7b1a92ad2b848a9bdfa075c4508d2533c9803bc0 Author: Mark Thomas <ma...@apache.org> AuthorDate: Fri Jul 26 14:59:57 2019 +0100 Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=63550 Only use the alternateURL for the JNDIRealm when it has been specified --- java/org/apache/catalina/realm/JNDIRealm.java | 4 ++++ webapps/docs/changelog.xml | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/java/org/apache/catalina/realm/JNDIRealm.java b/java/org/apache/catalina/realm/JNDIRealm.java index ddd07ae..5d46cfc 100644 --- a/java/org/apache/catalina/realm/JNDIRealm.java +++ b/java/org/apache/catalina/realm/JNDIRealm.java @@ -2461,6 +2461,10 @@ public class JNDIRealm extends RealmBase { context = createDirContext(getDirectoryContextEnvironment()); } catch (Exception e) { + if (alternateURL == null || alternateURL.length() == 0) { + // No alternate URL. Re-throw the exception. + throw e; + } connectionAttempt = 1; diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index 95dee23..d2cd6c9 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -60,6 +60,14 @@ issues do not "pop up" wrt. others). --> <section name="Tomcat 7.0.97 (violetagg)"> + <subsection name="Catalina"> + <changelog> + <fix> + <bug>63550</bug>: Only try the <code>alternateURL</code> in the + <code>JNDIRealm</code> if one has been specified. (markt) + </fix> + </changelog> + </subsection> <subsection name="Coyote"> <changelog> <fix> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org