瀏覽代碼

fix(dispatch) should call e.Index()

Xiang Li 12 年之前
父節點
當前提交
36dda352d9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      server/server.go

+ 1 - 1
server/server.go

@@ -269,7 +269,7 @@ func (s *Server) Dispatch(c raft.Command, w http.ResponseWriter, req *http.Reque
 			w.Header().Set("Content-Type", "application/json")
 			w.Header().Set("Content-Type", "application/json")
 			// etcd index should be the same as the event index
 			// etcd index should be the same as the event index
 			// which is also the last modified index of the node
 			// which is also the last modified index of the node
-			w.Header().Add("X-Etcd-Index", fmt.Sprint(e.Index))
+			w.Header().Add("X-Etcd-Index", fmt.Sprint(e.Index()))
 			w.Header().Add("X-Raft-Index", fmt.Sprint(s.CommitIndex()))
 			w.Header().Add("X-Raft-Index", fmt.Sprint(s.CommitIndex()))
 			w.Header().Add("X-Raft-Term", fmt.Sprint(s.Term()))
 			w.Header().Add("X-Raft-Term", fmt.Sprint(s.Term()))