Fix "DeprecationWarning: There is no current event loop" (#2390)
Co-authored-by: Adam Hopkins <adam@amhopkins.com>
This commit is contained in:
parent
0cb342aef4
commit
bb4474897f
@ -11,7 +11,7 @@ from asyncio import (
|
|||||||
CancelledError,
|
CancelledError,
|
||||||
Task,
|
Task,
|
||||||
ensure_future,
|
ensure_future,
|
||||||
get_event_loop,
|
get_event_loop_policy,
|
||||||
get_running_loop,
|
get_running_loop,
|
||||||
wait_for,
|
wait_for,
|
||||||
)
|
)
|
||||||
@ -253,7 +253,7 @@ class Sanic(BaseSanic, RunnerMixin, metaclass=TouchUpMeta):
|
|||||||
"Loop can only be retrieved after the app has started "
|
"Loop can only be retrieved after the app has started "
|
||||||
"running. Not supported with `create_server` function"
|
"running. Not supported with `create_server` function"
|
||||||
)
|
)
|
||||||
return get_event_loop()
|
return get_event_loop_policy().get_event_loop()
|
||||||
|
|
||||||
# -------------------------------------------------------------------- #
|
# -------------------------------------------------------------------- #
|
||||||
# Registration
|
# Registration
|
||||||
|
Loading…
x
Reference in New Issue
Block a user