Fix Serve typo (#12524)

This commit is contained in:
Edward Oakes
2020-12-01 01:15:42 -06:00
committed by GitHub
parent fd8ae0697b
commit e72147de38
+1 -1
View File
@@ -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