in bulk_indexer.go [693:700]
func (b *BulkIndexer) shouldRetryOnStatus(docStatus int) bool { for _, status := range b.config.RetryOnDocumentStatus { if docStatus == status { return true } } return false }