Commit 2fff555e authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

fmt

parent 020e719e
...@@ -12,6 +12,6 @@ import ( ...@@ -12,6 +12,6 @@ import (
func ConnectFunc(network, addr string) func() (net.Conn, error) { func ConnectFunc(network, addr string) func() (net.Conn, error) {
return func() (net.Conn, error) { return func() (net.Conn, error) {
log.Printf("Opening conn for SSH to %s %s", network, addr) log.Printf("Opening conn for SSH to %s %s", network, addr)
return net.DialTimeout(network, addr, 15 * time.Second) return net.DialTimeout(network, addr, 15*time.Second)
} }
} }
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