You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by sh...@apache.org on 2008/10/30 16:58:27 UTC

svn commit: r709186 - /lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/impl/CommonsHttpSolrServer.java

Author: shalin
Date: Thu Oct 30 08:58:26 2008
New Revision: 709186

URL: http://svn.apache.org/viewvc?rev=709186&view=rev
Log:
We are using BinaryResponseParser as the default now

Modified:
    lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/impl/CommonsHttpSolrServer.java

Modified: lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/impl/CommonsHttpSolrServer.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/impl/CommonsHttpSolrServer.java?rev=709186&r1=709185&r2=709186&view=diff
==============================================================================
--- lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/impl/CommonsHttpSolrServer.java (original)
+++ lucene/solr/trunk/client/java/solrj/src/org/apache/solr/client/solrj/impl/CommonsHttpSolrServer.java Thu Oct 30 08:58:26 2008
@@ -153,7 +153,7 @@
       this.setMaxTotalConnections( 128 ); // 20
     }
 
-    // by default use the XML one
+    // by default use the binary response parser
     _parser = parser;
     
     this.useMultiPartPost = useMultiPartPost;