From 73c3ba38d9f3a71f48c2c32849afba19e1a0ea69 Mon Sep 17 00:00:00 2001 From: Sasha Klizhentas Date: Tue, 12 Jun 2018 11:54:04 -0700 Subject: [PATCH] Switch to 1.10.3 --- build.assets/Dockerfile | 2 +- lib/sshutils/server_test.go | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/build.assets/Dockerfile b/build.assets/Dockerfile index bd0519749ccd4..5f8b2a2d4ad0d 100644 --- a/build.assets/Dockerfile +++ b/build.assets/Dockerfile @@ -21,7 +21,7 @@ RUN (curl -L https://github.com/coreos/etcd/releases/download/v3.0.16/etcd-v3.0. apt-get install -y net-tools tree) # Install Golang: -RUN mkdir -p /opt && cd /opt && curl https://storage.googleapis.com/golang/go1.9.2.linux-amd64.tar.gz | tar xz;\ +RUN mkdir -p /opt && cd /opt && curl https://storage.googleapis.com/golang/go1.10.3.linux-amd64.tar.gz | tar xz;\ mkdir -p /gopath/src/github.com/gravitational/teleport;\ chmod a+w /gopath;\ chmod a+w /var/lib;\ diff --git a/lib/sshutils/server_test.go b/lib/sshutils/server_test.go index c9156963a783a..e1d838d0ea250 100644 --- a/lib/sshutils/server_test.go +++ b/lib/sshutils/server_test.go @@ -133,9 +133,7 @@ func (s *ServerSuite) TestShutdown(c *C) { } func (s *ServerSuite) TestConfigureCiphers(c *C) { - called := false fn := NewChanHandlerFunc(func(_ net.Conn, conn *ssh.ServerConn, nch ssh.NewChannel) { - called = true nch.Reject(ssh.Prohibited, "nothing to see here") })