Sfoglia il codice sorgente

replaced cur_task.join with cur_task.wait

digital 8 anni fa
parent
commit
d1958b0e2b
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      network/__init__.py

+ 1 - 1
network/__init__.py

@@ -262,7 +262,7 @@ class Server(object):
                     # saver to use time.sleep
                     # saver to use time.sleep
                     time.sleep(0.1)
                     time.sleep(0.1)
         cur_task = await curio.current_task()
         cur_task = await curio.current_task()
-        await curio.ignore_after(0,cur_task.join)
+        await curio.ignore_after(0,cur_task.wait)
         # _tasks.remove(cur_task)
         # _tasks.remove(cur_task)