From 26a4a33c274fdf88e160ada85cec3c6ad2c0278a Mon Sep 17 00:00:00 2001 From: bjmb Date: Fri, 19 May 2017 18:12:32 -0400 Subject: [PATCH] Fixed typo --- cassandra/cluster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cassandra/cluster.py b/cassandra/cluster.py index c76ccb99..fc6b22af 100644 --- a/cassandra/cluster.py +++ b/cassandra/cluster.py @@ -3355,7 +3355,7 @@ class ResponseFuture(object): errors = self._errors if not errors: if self.is_schema_agreed: - key = self._current_host.address if self.current_host else 'no host queried before timeout' + key = self._current_host.address if self._current_host else 'no host queried before timeout' errors = {key: "Client request timeout. See Session.execute[_async](timeout)"} else: connection = self.session.cluster.control_connection._connection