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/09/08 02:49:34 UTC

[lucene-solr] branch reference_impl_dev updated: @800 Harden test.

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

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


The following commit(s) were added to refs/heads/reference_impl_dev by this push:
     new eb07829  @800 Harden test.
eb07829 is described below

commit eb07829afaff1a0efa234b0d1ff706ad835667b2
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Mon Sep 7 21:49:14 2020 -0500

    @800 Harden test.
---
 .../src/test/org/apache/solr/client/solrj/SolrExampleTestsBase.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solrj/src/test/org/apache/solr/client/solrj/SolrExampleTestsBase.java b/solr/solrj/src/test/org/apache/solr/client/solrj/SolrExampleTestsBase.java
index 0c31dbf..f1f4a7e 100644
--- a/solr/solrj/src/test/org/apache/solr/client/solrj/SolrExampleTestsBase.java
+++ b/solr/solrj/src/test/org/apache/solr/client/solrj/SolrExampleTestsBase.java
@@ -65,7 +65,7 @@ abstract public class SolrExampleTestsBase extends SolrJettyTestBase {
     doc3.addField("price", 10);
     UpdateRequest up = new UpdateRequest();
     up.add(doc3);
-    up.setCommitWithin(50);
+    up.setCommitWithin(10);
     up.process(client);
     
     rsp = client.query(new SolrQuery("*:*"));