[ARVADOS] updated: 1.3.0-2718-g876f66bbe

Git user git at public.arvados.org
Tue Jun 23 15:13:53 UTC 2020


Summary of changes:
 lib/pam/docker_test.go | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

       via  876f66bbe9f30e48a45208a627dfd50e2a68ec22 (commit)
      from  b694b711c69fdfd46b6732a6d6c67e37951dab39 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 876f66bbe9f30e48a45208a627dfd50e2a68ec22
Author: Tom Clegg <tom at tomclegg.ca>
Date:   Tue Jun 23 11:13:17 2020 -0400

    15348: Fix test suite crash after skipping docker tests.
    
    Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at tomclegg.ca>

diff --git a/lib/pam/docker_test.go b/lib/pam/docker_test.go
index 196a45244..eb139f145 100644
--- a/lib/pam/docker_test.go
+++ b/lib/pam/docker_test.go
@@ -95,8 +95,12 @@ Auth-Initial:
 }
 
 func (s *DockerSuite) TearDownSuite(c *check.C) {
-	s.proxysrv.Close()
-	s.proxyln.Close()
+	if s.proxysrv != nil {
+		s.proxysrv.Close()
+	}
+	if s.proxyln != nil {
+		s.proxyln.Close()
+	}
 }
 
 func (s *DockerSuite) runTestClient(c *check.C, args ...string) (stdout, stderr *bytes.Buffer, err error) {

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list