Closed wugefei closed 9 years ago
我把 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
很惭愧的说,netbsd真不好玩。。。 默认使用SelectIOLoop的话应该是可以的
我把 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