Commit dce04aa5 authored by Eric's avatar Eric

remove debug code

parent 47ef2d26
...@@ -97,7 +97,7 @@ func KeepAlive(c *SSHClient, closed <-chan struct{}, keepInterval time.Duration) ...@@ -97,7 +97,7 @@ func KeepAlive(c *SSHClient, closed <-chan struct{}, keepInterval time.Duration)
case <-closed: case <-closed:
return return
case <-t.C: case <-t.C:
ok, result, err := c.client.SendRequest("keepalive@openssh.com", true, nil) _, _, err := c.client.SendRequest("keepalive@openssh.com", true, nil)
if err != nil { if err != nil {
logger.Errorf("SSH client %p keep alive err: %s", c, err.Error()) logger.Errorf("SSH client %p keep alive err: %s", c, err.Error())
_ = c.Close() _ = c.Close()
...@@ -105,8 +105,6 @@ func KeepAlive(c *SSHClient, closed <-chan struct{}, keepInterval time.Duration) ...@@ -105,8 +105,6 @@ func KeepAlive(c *SSHClient, closed <-chan struct{}, keepInterval time.Duration)
logger.Debugf("Recycle Client SSH client %p ", c) logger.Debugf("Recycle Client SSH client %p ", c)
return return
} }
fmt.Println("keep alive ok: ", ok," "," result ", string(result))
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment