Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AsyncioConnection: fix initialize_reactor when called in event loop #327

Merged
merged 1 commit into from
Jun 12, 2024
Merged
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
16 changes: 9 additions & 7 deletions cassandra/io/asyncioreactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,15 +113,17 @@ def __init__(self, *args, **kwargs):
def initialize_reactor(cls):
with cls._lock:
if cls._pid != os.getpid():
# This means that class was passed to another process,
# e.g. using multiprocessing.
# In such case the class instance will be different and passing
# tasks to loop thread won't work.
# To fix we need to re-initialize the class
cls._loop = None
cls._loop_thread = None
cls._pid = os.getpid()
if cls._loop is None:
try:
cls._loop = asyncio.get_running_loop()
except RuntimeError:
cls._loop = asyncio.new_event_loop()
asyncio.set_event_loop(cls._loop)

if not cls._loop_thread:
assert cls._loop_thread is None
cls._loop = asyncio.new_event_loop()
# daemonize so the loop will be shut down on interpreter
# shutdown
cls._loop_thread = Thread(target=cls._loop.run_forever,
Expand Down
Loading