소스 검색

fixed typo, wrote async.sleep instead of curio.sleep

digital 8 년 전
부모
커밋
bbe37fcf4d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      network/__init__.py

+ 1 - 1
network/__init__.py

@@ -306,7 +306,7 @@ class Server(object):
                     lserver.error(e, exc_info=True)
                     # let's sleep a bit, in case something is broken and the
                     # loop throws an exception every time
-                    await async.sleep(0.01)
+                    await curio.sleep(0.01)
         # if a task exits and hasn't been joined, curio prints a warning.
         # we don't want the warning, so let's join the current task for 0
         # seconds. instead of task.join() we use task.wait(). the only