default e.getAllPids in executor_basic

This commit is contained in:
Lang Martin
2019-07-18 10:57:27 -04:00
parent ab3e6259d0
commit 7bd881cbf7
3 changed files with 4 additions and 8 deletions

View File

@@ -15,3 +15,7 @@ func NewExecutorWithIsolation(logger hclog.Logger) Executor {
func (e *UniversalExecutor) configureResourceContainer(_ int) error { return nil }
func (e *UniversalExecutor) runAs(_ string) error { return nil }
func (e *UniversalExecutor) getAllPids() (map[int]*nomadPid, error) {
return getAllPidsByScanning()
}