-
Notifications
You must be signed in to change notification settings - Fork 78
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
Connection hangs over tramp #186
Comments
I think the issue here is specifically with When running
When running
It hangs on opening the connection for For now, I'm hacking this with:
effectively removing any updating for the |
Ah interesting. My wild guess is that TRAMP is not reentrant or whatever it is called and does not support multiple tramp connections at the same time. Can you confirm it works all the time when doing:
If yes then:
If yes then:
My wild guess is that it'll work for 1, maybe 2 items but then fail at 3/4. |
I think there's the same behavior if you select multiple running containers and open a shell inside them. |
One easy fix would be to make things sequential when TRAMP is used but I'm not sure how. |
Looks like this is in fact the case. All three examples worked fine, but adding
This makes sense to me. One thing I plan on doing is submitting a PR for a configuration variable for whether to update and display status in the |
I don't see a simple way to force tramp to become sequential so I'll just close this 🤷 Would it make sense to disable transient statuses when over tramp maybe? with your newly introduced variable this looks easy to do. |
I think this issue is still worth keeping open (or at least opening a similar one with a more specific description of the problem). I still run into this issue when I'm inpatient and repeatedly hit Of course, I'll leave it up to you whether to close or open a new issue, as the main symptom (not being able to open the docker transient at all) I had is already addressed, but I think the problem still persists.
Sure, adding a |
Hi, thanks for this excellent package, the recent async refactor is exciting.
After updating, I'm trying to bring up the container list in a remote tramp buffer (to get running containers on a remote sever).
This used to wrok fine, however, since upgrading I get stuck with the following:
Which hangs until I quit with
C-g
.Seems like the correct ssh command is not running, and we are trying to connect with
docker ls
rather than runningdocker ls
on the remote host (I could be misinterpreting, not super familiar with tramp).Not sure if this is a limitation of the new aio usage.
The text was updated successfully, but these errors were encountered: