comment on Job.ModifyIndex vs Job.JobModifyIndex (#20393)

This commit is contained in:
Daniel Bennett
2024-04-15 16:39:16 -05:00
committed by GitHub
parent 30c0461048
commit ee213c3ddd

View File

@@ -4482,8 +4482,10 @@ type Job struct {
SubmitTime int64
// Raft Indexes
CreateIndex uint64
ModifyIndex uint64
CreateIndex uint64
// ModifyIndex is the index at which any state of the job last changed
ModifyIndex uint64
// JobModifyIndex is the index at which the job *specification* last changed
JobModifyIndex uint64
}