You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/07/27 23:29:32 UTC

[lucene-solr] branch reference_impl updated: @410 Seems to be the assumption.

This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch reference_impl
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/reference_impl by this push:
     new d3c11ab  @410 Seems to be the assumption.
d3c11ab is described below

commit d3c11ab8b40489e89adf304f602421cbcb61ae54
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Mon Jul 27 18:29:17 2020 -0500

    @410 Seems to be the assumption.
---
 .../src/java/org/apache/solr/client/solrj/request/UpdateRequest.java     | 1 +
 1 file changed, 1 insertion(+)

diff --git a/solr/solrj/src/java/org/apache/solr/client/solrj/request/UpdateRequest.java b/solr/solrj/src/java/org/apache/solr/client/solrj/request/UpdateRequest.java
index f4c77a1..c2872d0 100644
--- a/solr/solrj/src/java/org/apache/solr/client/solrj/request/UpdateRequest.java
+++ b/solr/solrj/src/java/org/apache/solr/client/solrj/request/UpdateRequest.java
@@ -237,6 +237,7 @@ public class UpdateRequest extends AbstractUpdateRequest {
     if (params == null)
       params = new ModifiableSolrParams();
     params.set(UpdateParams.COMMIT, "true");
+    params.set(UpdateParams.WAIT_SEARCHER, "true");
     return process(client, collection);
   }