From 8b99ad7a50eb9f489afe27397670e53043380956 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 21 Feb 2014 14:51:33 -0800 Subject: [PATCH] communicator/ssh: fix build --- communicator/ssh/connect.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/communicator/ssh/connect.go b/communicator/ssh/connect.go index bee446baa..1a01e024c 100644 --- a/communicator/ssh/connect.go +++ b/communicator/ssh/connect.go @@ -18,5 +18,7 @@ func ConnectFunc(network, addr string) func() (net.Conn, error) { if tcpConn, ok := c.(*net.TCPConn); ok { tcpConn.SetKeepAlive(true) } + + return c, nil } }