summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cinderclient/client.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/cinderclient/client.py b/cinderclient/client.py
index 3145324..906554a 100644
--- a/cinderclient/client.py
+++ b/cinderclient/client.py
@@ -315,8 +315,7 @@ class HTTPClient(CinderClientMixin):
else:
raise
except requests.exceptions.ConnectionError as e:
- # Catch a connection refused from requests.request
- self._logger.debug("Connection refused: %s" % e)
+ self._logger.debug("Connection error: %s" % e)
if attempts > self.retries:
msg = 'Unable to establish connection: %s' % e
raise exceptions.ConnectionError(msg)