[
https://issues.apache.org/jira/browse/SOLR-3889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13464788#comment-13464788
]
Mark Miller commented on SOLR-3889:
-----------------------------------
We could prob improve the script - it logs the results of starting the server
to /dev/null and then if there is any error at all, claims solr is not up.
{code}
curl "$URL/select?q=hello¶ms=explicit&wt=python" 2> /dev/null | grep
'hello' > /dev/null 2>&1
if [ $? = 0 ]; then
echo "Solr server is up."
else
echo "ERROR: Solr is not up."
exit 1
fi
{code}
> SmokeTest fail on my Linux machine.
> -----------------------------------
>
> Key: SOLR-3889
> URL: https://issues.apache.org/jira/browse/SOLR-3889
> Project: Solr
> Issue Type: Bug
> Reporter: Mark Miller
> Assignee: Mark Miller
> Fix For: 4.0, 5.0
>
>
> The smoketest fails in testUTF-8 every time on my system.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]