NetBSD 7系统中不能正常运行
wugefei opened this issue · 1 comments
wugefei commented
我把 EPollIOLoop替换为KQueueIOLoop就可以正常运行了。但是网页上一直显示连接,不能输入命令。
改变的文件:ioloop.py
相关代码位置:
@staticmethod
def instance():
if not hasattr(IOLoop, "_instance"):
if Platform.is_win():
IOLoop._instance = SelectIOLoop()
elif Platform.is_mac():
IOLoop._instance = KQueueIOLoop()
else:
IOLoop._instance = KQueueIOLoop()
return IOLoop._instance
xsank commented