diff --git a/solr/core/src/java/org/apache/solr/servlet/HttpSolrCall.java b/solr/core/src/java/org/apache/solr/servlet/HttpSolrCall.java index 00e6b102f34..3434f2902ac 100644 --- a/solr/core/src/java/org/apache/solr/servlet/HttpSolrCall.java +++ b/solr/core/src/java/org/apache/solr/servlet/HttpSolrCall.java @@ -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;