From e72147de38865d5fed56852451ce2a0dc23d2449 Mon Sep 17 00:00:00 2001 From: Edward Oakes Date: Tue, 1 Dec 2020 01:15:42 -0600 Subject: [PATCH] Fix Serve typo (#12524) --- python/ray/serve/long_poll.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/serve/long_poll.py b/python/ray/serve/long_poll.py index b178e1ba1..91c1d8c68 100644 --- a/python/ray/serve/long_poll.py +++ b/python/ray/serve/long_poll.py @@ -65,7 +65,7 @@ class LongPollerAsyncClient: while True: updates: Dict[str, UpdatedObject] = await self._poll_once() self._update(updates) - logger.debug(f"LongPollerClient received udpates: {updates}") + logger.debug(f"LongPollerClient received updates: {updates}") for key, updated_object in updates.items(): # NOTE(simon): This blocks the loop from doing another poll. # Consider use loop.create_task here or poll first then call