engine: graph: Handle the back poke differently
A back poke is the deferral or delay of a Process/CheckApply. This is because we notice that we're not truly ready to CheckApply due to some timestamp issue. When Process errors, we should accept that, but not treat it as a success.
This commit is contained in:
@@ -26,4 +26,7 @@ func (e Error) Error() string { return string(e) }
|
||||
const (
|
||||
// ErrClosed means we couldn't complete a task because we had closed.
|
||||
ErrClosed = Error("closed")
|
||||
|
||||
// ErrBackPoke means we're postponing due to a needed backpoke.
|
||||
ErrBackPoke = Error("backpoke")
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user