mirror of https://github.com/apache/lucene.git
SOLR-268 - Tweaks to post.jar so it prints the error message from Solr.
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@550010 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7b4db83305
commit
9eb7ff4bc5
|
@ -92,7 +92,9 @@ Other Changes
|
||||||
to be removed in a later release. While this change does not affect API
|
to be removed in a later release. While this change does not affect API
|
||||||
compatibility, it is recommended to update references to these
|
compatibility, it is recommended to update references to these
|
||||||
deprecated classes. (ryan)
|
deprecated classes. (ryan)
|
||||||
|
|
||||||
|
2. SOLR-268: Tweaks to post.jar so it prints the error message from Solr.
|
||||||
|
(Brian Whitman via hossman)
|
||||||
|
|
||||||
================== Release 1.2, 20070602 ==================
|
================== Release 1.2, 20070602 ==================
|
||||||
|
|
||||||
|
|
|
@ -264,8 +264,10 @@ public class SimplePostTool {
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
try {
|
||||||
|
fatal("Solr returned an error: " + urlc.getResponseMessage());
|
||||||
|
} catch (IOException f) { }
|
||||||
fatal("Connection error (is Solr running at " + solrUrl + " ?): " + e);
|
fatal("Connection error (is Solr running at " + solrUrl + " ?): " + e);
|
||||||
|
|
||||||
} finally {
|
} finally {
|
||||||
if(urlc!=null) urlc.disconnect();
|
if(urlc!=null) urlc.disconnect();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue