فهرست منبع

raft: group Node fields

Blake Mizerany 11 سال پیش
والد
کامیت
3a85d97fd9
1فایلهای تغییر یافته به همراه3 افزوده شده و 5 حذف شده
  1. 3 5
      raft/node.go

+ 3 - 5
raft/node.go

@@ -18,13 +18,11 @@ type config struct {
 }
 }
 
 
 type Node struct {
 type Node struct {
-	// election timeout and heartbeat timeout in tick
+	sm *stateMachine
+
+	elapsed   tick
 	election  tick
 	election  tick
 	heartbeat tick
 	heartbeat tick
-
-	// elapsed ticks after the last reset
-	elapsed tick
-	sm      *stateMachine
 }
 }
 
 
 func New(id int, heartbeat, election tick) *Node {
 func New(id int, heartbeat, election tick) *Node {