Steven Robertson

Results 51 comments of Steven Robertson

👍 this would be cool to add. ``` if not self._requires_pty(): bits += ['-o', 'BatchMode yes'] if self.options.check_host_keys == 'enforce': bits += ['-o', 'StrictHostKeyChecking yes'] if self.options.check_host_keys == 'accept': bits...

Could someone try latest `master` again? I don't have a WSL env to test with unfortunately :( I have noticed other unrelated tasks have failed though with different amounts of...

Does anyone know if there's a way to get a WSL machine to test with? We use Azure Devops to test but afaik there's no WSL env we can enable

> > Does anyone know if there's a way to get a WSL machine to test with? We use Azure Devops to test but afaik there's no WSL env we...

> Also reproducible for me most of the time, it seems much more prone to doing it on "copy" tasks for some reason. > > I'm surprised because it was...

Could it be due to an ssh timeout error maybe? I found https://www.reddit.com/r/bashonubuntuonwindows/comments/bj617c/how_to_keep_wsl_shell_open_when_ssh_session/ . Wild shot in the dark but if it used to work with the same code and...

Ok. I'm not too sure why the underlying subsystems would be rejecting the other connections 😞 maybe @dw knows? He fixed WSL stuff last time: https://github.com/dw/mitogen/commit/22bab87821a02ed8cb6b3eb4b52c766a8f5cfee7 and https://github.com/dw/mitogen/commit/56943d3141c95a25b376d4dcfe01741d22f78bdf . I...

I think it's because of how mitogen creates the `su` and `sudo` command to use 🤔 Here's an alternative to what could work in the meantime though: ``` become =...