SOLR-3889: improve utf-8 test script error message when curl call to Solr fails

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1391046 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2012-09-27 15:01:25 +00:00
parent 4265df1368
commit 94da721fc2
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ curl "$URL/select?q=hello&params=explicit&wt=python" 2> /dev/null | grep 'hello'
if [ $? = 0 ]; then
echo "Solr server is up."
else
echo "ERROR: Solr is not up."
echo "ERROR: Could not curl to Solr - is curl installed? Is Solr not running?"
exit 1
fi