mirror of
https://github.com/gravitational/teleport.git
synced 2026-09-24 16:17:11 +08:00
* Fix a resource leak in the proxy-node connection After Dial succeeds to the node, there are a couple of error cases where we return without closing the connection. The happy path closes the connection in utils.ProxyConn. defer is the simplest way to ensure it's closed with any error cases and the extra close in the happy path does not have a negative effect * go fmt