engine: Add a ctx to the CheckApply API
This is just a rough port, there are lots of optimizations to be done and lots of timeout values that should be replaced by a new timeout meta param!
This commit is contained in:
@@ -176,7 +176,7 @@ type testEngineRes struct {
|
||||
privateProp2 []int
|
||||
}
|
||||
|
||||
func (t *testEngineRes) CheckApply(bool) (bool, error) { return false, nil }
|
||||
func (t *testEngineRes) CheckApply(context.Context, bool) (bool, error) { return false, nil }
|
||||
|
||||
func (t *testEngineRes) Cleanup() error { return nil }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user