-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(zmqhandlers.py) RuntimeWarning: coroutine 'WebSocketHandler.get' was never awaited #4437
Comments
Could you please provide Traceback information relative to this issue? The message implies it would be something the caller failed to do. So I think we need to drill down a bit. This sounds more sinister than the previous incompatibility introduced by a Tornado release. |
Not sure if this is what you mean, but this is the Notebook server's entire output in my terminal:
|
I run the command I also meet the same issue. My jupyter notebook could work yesterday but doesn't work this morning.
|
I got my notebook to connect by downgrading tornado from 6.0.0 to 5.1.1:
|
@convoliution - yes this is helpful. I believe the call to the superclass needs an However, I suspect this is one of those tip of the iceberg things - and we might be better off capping tornado < 6.0 if it turns into a slippery slope. Sorry, I can't refuse a cliche when it's there. 😄 |
I should have looked at the code prior to my response. Turns out @takluyver added a That said, when I run the master tip with tornado 6, I still see issues - different from above. Since it doesn't appear these changes are in any releases, I suspect it would be good to build a release that caps tornado. cc: @minrk |
a good way!valid I run the command pip install 'tornado<6' to fix the issue. |
I run the command pip install tornado==5.1.1 to fix the issue. |
Merging with #4439 |
This fixes compatibility with py-tornado 6. See: jupyter/notebook#4439 jupyter/notebook#4437
This fixes compatibility with py-tornado 6. See: jupyter/notebook#4439 jupyter/notebook#4437
This command worked for me: pip install 'tornado<6' |
Unfortunately, I use packages that require the most up-to-date tornado. Jupyter should consider updating. |
Attempting to connect to a kernel results in this error being thrown, in a fresh install of the
jupyter
pip package.Based on this StackOverflow post and the fact that Tornado released a new major version two hours ago, I believe this is a compatibility issue with Tornado v6.0
Manually reverting to Tornado v5.1.1 resolved this issue, but Jupyter should be updated or its dependency requirement changed.
The text was updated successfully, but these errors were encountered: