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