I want to connect to Redis over SSH with golang.org/x/crypto/ssh. Currently ssh channels does not support deadlines. See golang/go#65930.
So the following calls should be disabled.
|
if err := c.conn.SetReadDeadline(deadline); err != nil { |
|
if err := c.conn.SetReadDeadline(deadline); err != nil { |
Right now, there is no way we can do that.
I want to connect to Redis over SSH with golang.org/x/crypto/ssh. Currently ssh channels does not support deadlines. See golang/go#65930.
So the following calls should be disabled.
redigo/redis/conn.go
Line 748 in 247f6c0
redigo/redis/conn.go
Line 748 in 247f6c0
Right now, there is no way we can do that.