You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by an...@apache.org on 2015/05/15 18:44:22 UTC

svn commit: r1679604 - in /lucene/dev/branches/branch_5x: ./ solr/ solr/core/ solr/core/src/java/org/apache/solr/servlet/HttpSolrCall.java

Author: anshum
Date: Fri May 15 16:44:21 2015
New Revision: 1679604

URL: http://svn.apache.org/r1679604
Log:
SOLR-7275: Setting requestType for context object in case of a /get request(merge from trunk)

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/solr/   (props changed)
    lucene/dev/branches/branch_5x/solr/core/   (props changed)
    lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/servlet/HttpSolrCall.java

Modified: lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/servlet/HttpSolrCall.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/servlet/HttpSolrCall.java?rev=1679604&r1=1679603&r2=1679604&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/servlet/HttpSolrCall.java (original)
+++ lucene/dev/branches/branch_5x/solr/core/src/java/org/apache/solr/servlet/HttpSolrCall.java Fri May 15 16:44:21 2015
@@ -901,7 +901,7 @@ public class HttpSolrCall {
     
     // Populate the request type if the request is select or update
     if(requestType == RequestType.UNKNOWN) {
-      if(resource.startsWith("/select"))
+      if(resource.startsWith("/select") || resource.startsWith("/get"))
         requestType = RequestType.READ;
       if(resource.startsWith("/update"))
         requestType = RequestType.WRITE;