make sure filters are executed when no predicates configured

This commit is contained in:
Abdullah Gharaibeh
2019-10-16 21:24:33 -04:00
parent f7091992c0
commit 17a6a7914c
4 changed files with 13 additions and 1 deletions

View File

@@ -172,6 +172,10 @@ func (*fakeFramework) QueueSortFunc() framework.LessFunc {
}
}
func (f *fakeFramework) HasFilterPlugins() bool {
return true
}
func (f *fakeFramework) ListPlugins() map[string][]config.Plugin {
return nil
}