You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2016/08/29 06:54:53 UTC

lucene-solr:master: SOLR-9188: Trying revert a change and fix the unexpected IOException in jenkins failure.

Repository: lucene-solr
Updated Branches:
  refs/heads/master 738d52700 -> 0ed8c2a7a


SOLR-9188: Trying revert a change and  fix the unexpected IOException in jenkins failure.


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/0ed8c2a7
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/0ed8c2a7
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/0ed8c2a7

Branch: refs/heads/master
Commit: 0ed8c2a7ad7038f99bff3322b06edf948a61dfe0
Parents: 738d527
Author: Noble Paul <no...@apache.org>
Authored: Mon Aug 29 12:24:42 2016 +0530
Committer: Noble Paul <no...@apache.org>
Committed: Mon Aug 29 12:24:42 2016 +0530

----------------------------------------------------------------------
 solr/core/src/java/org/apache/solr/security/BasicAuthPlugin.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/0ed8c2a7/solr/core/src/java/org/apache/solr/security/BasicAuthPlugin.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/security/BasicAuthPlugin.java b/solr/core/src/java/org/apache/solr/security/BasicAuthPlugin.java
index 9dc34e7..49c02d7 100644
--- a/solr/core/src/java/org/apache/solr/security/BasicAuthPlugin.java
+++ b/solr/core/src/java/org/apache/solr/security/BasicAuthPlugin.java
@@ -141,7 +141,7 @@ public class BasicAuthPlugin extends AuthenticationPlugin implements ConfigEdita
       }
     } else {
       if (blockUnknown) {
-        authenticationFailure(response, "require authentication for pathinfo :"+ request.getPathInfo());
+        authenticationFailure(response, "require authentication");
       } else {
         request.setAttribute(AuthenticationPlugin.class.getName(), zkAuthentication.getPromptHeaders());
         filterChain.doFilter(request, response);