From 8276ec653bc413f6640f49841a1a8314b436cd0c Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Sat, 24 Apr 2021 17:10:53 -0400 Subject: [PATCH] Fix up system test --- system_test/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system_test/helpers.go b/system_test/helpers.go index 3cc50674..8c6094a8 100644 --- a/system_test/helpers.go +++ b/system_test/helpers.go @@ -510,7 +510,7 @@ func mustNewOpenTLSTransport(certFile, keyPath, addr string) *tcp.Transport { addr = "localhost:0" } - tn := tcp.NewTLSTransport(certFile, keyPath, true) + tn := tcp.NewTLSTransport(certFile, keyPath, "", true) if err := tn.Open(addr); err != nil { panic(fmt.Sprintf("failed to open transport: %s", err)) }