Browse Source

Merge pull request #2626 from yichengq/fix-raft-status

raft: generate correct json-format status
Yicheng Qin 10 years ago
parent
commit
89495f9194
1 changed files with 2 additions and 2 deletions
  1. 2 2
      raft/status.go

+ 2 - 2
raft/status.go

@@ -50,14 +50,14 @@ func getStatus(r *raft) Status {
 
 
 // TODO: try to simplify this by introducing ID type into raft
 // TODO: try to simplify this by introducing ID type into raft
 func (s Status) MarshalJSON() ([]byte, error) {
 func (s Status) MarshalJSON() ([]byte, error) {
-	j := fmt.Sprintf(`{"id":"%x","term":%d,"vote":"%x","commit":%d,"lead":"%x","raftState":"%s","progress":{`,
+	j := fmt.Sprintf(`{"id":"%x","term":%d,"vote":"%x","commit":%d,"lead":"%x","raftState":%q,"progress":{`,
 		s.ID, s.Term, s.Vote, s.Commit, s.Lead, s.RaftState)
 		s.ID, s.Term, s.Vote, s.Commit, s.Lead, s.RaftState)
 
 
 	if len(s.Progress) == 0 {
 	if len(s.Progress) == 0 {
 		j += "}}"
 		j += "}}"
 	} else {
 	} else {
 		for k, v := range s.Progress {
 		for k, v := range s.Progress {
-			subj := fmt.Sprintf(`"%x":{"match":%d,"next":%d,"state":%s},`, k, v.Match, v.Next, v.State)
+			subj := fmt.Sprintf(`"%x":{"match":%d,"next":%d,"state":%q},`, k, v.Match, v.Next, v.State)
 			j += subj
 			j += subj
 		}
 		}
 		// remove the trailing ","
 		// remove the trailing ","