Explorar o código

fix(etcd): reverse the cert handling

the server tls config needs the client CA information and the client
needs the pub/priv key. This is how this code used to work.
Brandon Philips %!s(int64=12) %!d(string=hai) anos
pai
achega
466229cf4d
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      etcd.go

+ 3 - 3
etcd.go

@@ -479,10 +479,10 @@ func tlsConfigFromInfo(info TLSInfo) (t TLSConfig, ok bool) {
 	}
 
 	t.Scheme = "https"
-	t.Server.Certificates = []tls.Certificate{tlsCert}
-	t.Server.InsecureSkipVerify = true
+	t.Server.ClientAuth, t.Server.ClientCAs = newCertPool(CAFile)
 
-	t.Client.ClientAuth, t.Client.ClientCAs = newCertPool(CAFile)
+	t.Client.Certificates = []tls.Certificate{tlsCert}
+	t.Client.InsecureSkipVerify = true
 
 	return t, true
 }