We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 544461a commit b630116Copy full SHA for b630116
webssh/handler.py
@@ -405,8 +405,10 @@ def open(self):
405
worker = workers.get(worker_id)
406
if worker:
407
workers[worker_id] = None
408
- if self.stream:
+ try:
409
self.set_nodelay(True)
410
+ except AssertionError: # tornado 6.00 bug
411
+ pass
412
worker.set_handler(self)
413
self.worker_ref = weakref.ref(worker)
414
self.loop.add_handler(worker.fd, worker, IOLoop.READ)
0 commit comments