Comment on AllocModifyIndex

This commit is contained in:
Alex Dadgar
2016-02-01 18:15:12 -08:00
parent c0ab75a7f9
commit 679a57c704

View File

@@ -1675,8 +1675,11 @@ type Allocation struct {
TaskStates map[string]*TaskState
// Raft Indexes
CreateIndex uint64
ModifyIndex uint64
CreateIndex uint64
ModifyIndex uint64
// AllocModifyIndex is not updated when the client updates allocations. This
// lets the client pull only the allocs updated by the server.
AllocModifyIndex uint64
}