in src/Elastic.Ingest.Elasticsearch/ElasticsearchChannelBase.cs [40:46]
protected override bool Retry(BulkResponse response)
{
var details = response.ApiCallDetails;
if (!details.HasSuccessfulStatusCode)
Options.ExportExceptionCallback?.Invoke(new Exception(details.ToString(), details.OriginalException));
return details.HasSuccessfulStatusCode;
}