From 5ea7cdebcb024ae08811232eb3c8285e72fefbcf Mon Sep 17 00:00:00 2001 From: moelsayed Date: Fri, 23 Mar 2018 02:02:46 +0200 Subject: [PATCH] typo --- cluster/hosts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/hosts.go b/cluster/hosts.go index 0bce8111..6b229247 100644 --- a/cluster/hosts.go +++ b/cluster/hosts.go @@ -32,7 +32,7 @@ func (c *Cluster) TunnelHosts(ctx context.Context, local bool) error { uniqueHosts := hosts.GetUniqueHostList(c.EtcdHosts, c.ControlPlaneHosts, c.WorkerHosts) for i := range uniqueHosts { if err := uniqueHosts[i].TunnelUp(ctx, c.DockerDialerFactory); err != nil { - // Unsupported Docker version is NOT a connectivity problem that we can't recover! So we bail out on it + // Unsupported Docker version is NOT a connectivity problem that we can recover! So we bail out on it if strings.Contains(err.Error(), "Unsupported Docker version found") { return err }