From e67d15c490585de3f350b91ee9a4e12d3ba134b7 Mon Sep 17 00:00:00 2001 From: dvora-h <67596500+dvora-h@users.noreply.github.com> Date: Thu, 5 Jan 2023 14:33:10 +0200 Subject: replase get_event_loop wite get_running_loop (#2530) --- redis/asyncio/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'redis/asyncio/client.py') diff --git a/redis/asyncio/client.py b/redis/asyncio/client.py index 5a2c496..8fd9cd2 100644 --- a/redis/asyncio/client.py +++ b/redis/asyncio/client.py @@ -453,7 +453,7 @@ class Redis( f"Unclosed client session {self!r}", ResourceWarning, source=self ) context = {"client": self, "message": self._DEL_MESSAGE} - asyncio.get_event_loop().call_exception_handler(context) + asyncio.get_running_loop().call_exception_handler(context) async def close(self, close_connection_pool: Optional[bool] = None) -> None: """ @@ -798,7 +798,7 @@ class PubSub: if ( conn.health_check_interval - and asyncio.get_event_loop().time() > conn.next_health_check + and asyncio.get_running_loop().time() > conn.next_health_check ): await conn.send_command( "PING", self.HEALTH_CHECK_MESSAGE, check_health=False -- cgit v1.2.1