Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Bug Fixes
* Both _set_final_exception/result called for the same ResponseFuture (PYTHON-630)
* Use of DCAwareRoundRobinPolicy raises NoHostAvailable exception (PYTHON-781)
* Not create two sessions by default in CQLEngine (PYTHON-814)
* Bug when subclassing AyncoreConnection (PYTHON-827)

3.11.0
======
Expand Down
2 changes: 1 addition & 1 deletion cassandra/io/asyncorereactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def __init__(self, *args, **kwargs):
callback=partial(asyncore.dispatcher.__init__,
self, self._socket, _dispatcher_map)
)
AsyncoreConnection._loop.add_timer(init_handler)
self._loop.add_timer(init_handler)
init_handler.wait(kwargs["connect_timeout"])

self._writable = True
Expand Down