This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / spindle / engine / errors.go
183 B 9 lines
1package engine 2 3import "errors" 4 5var ( 6 ErrOOMKilled = errors.New("oom killed") 7 ErrTimedOut = errors.New("timed out") 8 ErrWorkflowFailed = errors.New("workflow failed") 9)