mirror of https://github.com/apache/lucene.git
Add additional UpdateRequest constructor to allow custom update URLs to be used
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@660509 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
04465637a2
commit
da6341f0ec
|
@ -63,6 +63,10 @@ public class UpdateRequest extends SolrRequest
|
||||||
super( METHOD.POST, "/update" );
|
super( METHOD.POST, "/update" );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public UpdateRequest(String url) {
|
||||||
|
super(METHOD.POST, url);
|
||||||
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue