From da478caf12cc1d2833da512ce93c3f0a91f9d874 Mon Sep 17 00:00:00 2001 From: Honza Kral Date: Fri, 14 Jun 2013 16:49:05 +0200 Subject: [PATCH] clarify comment, we now mark all connections as live on success --- elasticsearch/transport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticsearch/transport.py b/elasticsearch/transport.py index 7d099429..9d1f5a6e 100644 --- a/elasticsearch/transport.py +++ b/elasticsearch/transport.py @@ -222,7 +222,7 @@ class Transport(object): if attempt == self.max_retries: raise else: - # resurrected connection didn't fail, confirm it's live status + # connection didn't fail, confirm it's live status self.connection_pool.mark_live(connection) data = None if raw_data: