use a combination of default values that is supported by Solr

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@574920 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William Au 2007-09-12 12:40:55 +00:00
parent 14e8c34757
commit 39328264aa
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ public class UpdateRequest extends RequestBase
private boolean waitFlush = true;
private boolean waitSearcher = true;
private boolean allowDups = false;
private boolean overwriteCommitted = false;
private boolean overwritePending = false;
private boolean overwriteCommitted = true;
private boolean overwritePending = true;
private ACTION action = null;
private List<SolrInputDocument> documents = null;