increase time to commit to avoid test failure

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@723836 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2008-12-05 19:45:49 +00:00
parent 7fe3fa9468
commit 474ab9a515
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ abstract public class SolrExampleTests extends SolrExampleTestBase
doc3.addField( "price", 10 );
UpdateRequest up = new UpdateRequest();
up.add( doc3 );
up.setCommitWithin( 10 );
up.setCommitWithin( 100 );
up.process( server );
rsp = server.query( new SolrQuery( "*:*") );