Fix issue #2: nil pointer exception in handleWait()

This commit is contained in:
Shishir Mahajan 2020-12-17 14:18:53 -08:00
parent a23d84064e
commit 0e85f4ab18

View File

@ -529,17 +529,15 @@ func (d *Driver) handleWait(ctx context.Context, handle *taskHandle, ch chan *dr
exitStatusCh, err := handle.task.Wait(ctxWithTimeout)
if err != nil {
result = &drivers.ExitResult{
ExitCode: 255,
Err: fmt.Errorf("executor: error waiting on process: %v", err),
}
} else {
status := <-exitStatusCh
code, _, err := status.Result()
if err != nil {
d.logger.Error(err.Error())
return
}
result = &drivers.ExitResult{
ExitCode: int(code),
Err: err,
}
}