This commit is contained in:
Chris Lu
2014-02-04 01:11:28 -08:00
parent 6887e55f6a
commit af4b9c3aee
2 changed files with 8 additions and 8 deletions

View File

@@ -32,9 +32,9 @@ func NewRaftServer(r *mux.Router, version string, peers []string, httpAddr strin
router: r,
}
if glog.V(4) {
raft.SetLogLevel(2)
}
if glog.V(4) {
raft.SetLogLevel(2)
}
var err error
transporter := raft.NewHTTPTransporter("/cluster")
@@ -49,7 +49,7 @@ func NewRaftServer(r *mux.Router, version string, peers []string, httpAddr strin
s.raftServer.Start()
s.router.HandleFunc("/cluster/join", s.joinHandler).Methods("POST")
s.router.HandleFunc("/cluster/status", s.statusHandler).Methods("GET")
s.router.HandleFunc("/cluster/status", s.statusHandler).Methods("GET")
// Join to leader if specified.
if len(s.peers) > 0 {