Hi all,
We have code that creates a DefaultHttpClient instance for use with
Solr. The HttpEntity that is created when sending data is not
reusable, so we've disabled retries (we thought) using the following
code:
DefaultHttpClient localClient = new
DefaultHttpClient(connectionManager,params);
// No retries
localClient.setHttpRequestRetryHandler(new HttpRequestRetryHandler()
{
public boolean retryRequest(
IOException exception,
int executionCount,
HttpContext context)
{
return false;
}
});
Unfortunately it does not seem to have actually worked; we are still
seeing "non-reusable stream" retry errors in some cases. Has anybody
seen this before, and what
are we doing wrong?
Karl
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]