Paul Meinhardt
Paul Meinhardt
Ah, and if you open a PR and reference this issue, we could add feedback/discussions in the right places @seungjin ✌️
Hi @lessless, thanks a lot for bringing some life to this PR again 🌱💧 I think this is a very valid question that we have also asked ourselves. On the...
At the same time, sorry @seungjin for the long silence 🙇 I had another look at how we could verify that connections are established in parallel. Here's a thought: 1....
Hey @lessless, there's currently no plan to integrate retry into the package – it seems to me like this would be highly application/use-case dependent. Any `SSHKit.run` and `SSHKit.upload/download` calls return...
Hi @seungjin, if you have an `SSHKit.Context` struct `context` and the `results` of `SSHKit.run/3`, you could `Enum.zip(context.hosts, results)` together to tag each result with the corresponding host. ```elixir context =...
Here's a preliminary, working example of a streaming interface for v1 (from the `v1` branch): https://github.com/bitcrowd/sshkit.ex/blob/9051dcac8059b05049397cbaac70588cd4d7465f/examples/stream.exs
Thanks a lot for posting your solution to the problem 🎉 To maybe narrow it down further: In which way, did you provide the host for the digital ocean server:...
Cool, thanks a lot @Markcial. I'll definitely need take a more detailed look. Maybe @tessi or @brienw have some thoughts on this topic as well? 😁 The initial question for...
@brienw I couldn't sleep, so I decided to go to that "very dark scary place" and found some light: https://gist.github.com/pmeinhardt/8c746ebe8d7397a2a07dabb1ba7ab30c 💡 With this, I was able to connect to the...
Awesome @Markcial, I think that's used in [labzero/ssh_client_key_api](https://github.com/labzero/ssh_client_key_api) as well. So maybe we can take a peek there. I need to refresh my memory on [Erlang's ssh_client_key_api](http://erlang.org/doc/man/ssh_client_key_api.html), but maybe there's...