Browse Source

fix(etcd): fixup TLSInfo json

the JSON wasn't getting generated properly. Fix it up.
Brandon Philips 12 years ago
parent
commit
eb8f1dc6eb
1 changed files with 4 additions and 4 deletions
  1. 4 4
      etcd.go

+ 4 - 4
etcd.go

@@ -104,9 +104,9 @@ const (
 //------------------------------------------------------------------------------
 
 type TLSInfo struct {
-	CertFile string `json:"serverCertFile"`
-	KeyFile  string `json:"serverKeyFile"`
-	CAFile   string `json:"serverCAFile"`
+	CertFile string `json:"CertFile"`
+	KeyFile  string `json:"KeyFile"`
+	CAFile   string `json:"CAFile"`
 }
 
 type Info struct {
@@ -117,7 +117,7 @@ type Info struct {
 	WebURL  string `json:"webURL"`
 
 	RaftTLS TLSInfo `json:"raftTLS"`
-	EtcdTLS TLSInfo `json:"raftTLS"`
+	EtcdTLS TLSInfo `json:"etcdTLS"`
 }
 
 //------------------------------------------------------------------------------