Pavel White

Results 91 comments of Pavel White

@MartinThoma sorry, I try to explain you. As you can see here https://github.com/schickling/docker-hook#features one of the feature of this project is "No dependencies". But now, this project have "requests" dependence.

Do you have any plans for Rancher 2.0 ansible deploy?

Could you please provide the whole logs with `sshtunnel.DEFAULT_LOGLEVEL = 1`? It looks like a bug. Similar to #226

What about tests? And README example?

Could you please provide the whole log of your program with `sshtunnel.DEFAULT_LOGLEVEL = logging.DEBUG` or better with `sshtunnel.DEFAULT_LOGLEVEL = 1` ?

I think it's maybe the same problem as the #226 . As I can see `sshtunnel` trying to use the `id_rsa` key instead of the password. You can try this...

Could you please run this command with `-vvvv` option? And shows the output.

Sorry for the delay. As I understand the hack `tunnel.ssh_pkeys = [] # DIRTY HACK!` is helped to solve the first problem. About the second: could you please check your...

`TUNNEL_TIMEOUT` and `SSH_TIMEOUT` consts are for [socket.settimeout](https://docs.python.org/3/library/socket.html#socket.socket.settimeout). It's not related to SSH protocol. Paramiko has special variables for SSH protocol level timeout tunning (`banner_timeout`, `handshake_timeout`, `auth_timeout`). Try this example: ```...