We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The exception for connecting with SSH currently has all the parameters passed to paramiko, except for the host (which is kind of important):
try: self._client.connect(self._machine, **connection_arguments) except Exception as exc: self.logger.error("Error connecting through SSH: [{}] {}, " "connect_args were: {}".format(exc.__class__.__name__, exc, self._connect_args)) raise
Let's include the host as well!
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The exception for connecting with SSH currently has all the parameters passed to paramiko, except for the host (which is kind of important):
Let's include the host as well!
The text was updated successfully, but these errors were encountered: