Don't log at ERROR when a conn closes during startup
This commit is contained in:
@@ -11,6 +11,11 @@ Bug Fixes
|
|||||||
* Avoid handling a node coming up multiple times due to a reconnection attempt
|
* Avoid handling a node coming up multiple times due to a reconnection attempt
|
||||||
succeeding close to the same time that an UP notification is pushed
|
succeeding close to the same time that an UP notification is pushed
|
||||||
|
|
||||||
|
Other
|
||||||
|
-----
|
||||||
|
* Don't log at ERROR when a connection is closed during the startup
|
||||||
|
communications
|
||||||
|
|
||||||
1.1.1
|
1.1.1
|
||||||
=====
|
=====
|
||||||
April 16, 2014
|
April 16, 2014
|
||||||
|
|||||||
@@ -415,6 +415,9 @@ class Connection(object):
|
|||||||
raise ConnectionException(
|
raise ConnectionException(
|
||||||
"Failed to initialize new connection to %s: %s"
|
"Failed to initialize new connection to %s: %s"
|
||||||
% (self.host, startup_response.summary_msg()))
|
% (self.host, startup_response.summary_msg()))
|
||||||
|
elif isinstance(startup_response, ConnectionShutdown):
|
||||||
|
log.debug("Connection to %s was closed during the startup handshake", (self.host))
|
||||||
|
raise startup_response
|
||||||
else:
|
else:
|
||||||
msg = "Unexpected response during Connection setup: %r"
|
msg = "Unexpected response during Connection setup: %r"
|
||||||
log.error(msg, startup_response)
|
log.error(msg, startup_response)
|
||||||
|
|||||||
Reference in New Issue
Block a user