You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: replace deprecated asyncio.get_event_loop() with modern approach (#1865)
Replace deprecated get_event_loop() with get_running_loop() and fallback
to new_event_loop() to fix the "no current event loop" warning in Python 3.10+
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ Changelog
13
13
------
14
14
Fixed
15
15
^^^^^
16
+
- Fixed asyncio "no current event loop" deprecation warning by replacing `asyncio.get_event_loop()` with modern event loop handling using `get_running_loop()` with fallback to `new_event_loop()` (#1865)
0 commit comments