Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Fix runtimeTypes.Status to titusdriver.Status conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
sargun committed May 10, 2018
1 parent 7a800bf commit d4da3a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executor/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ func (r *Runner) monitorContainer(ctx context.Context, startTime time.Time, stat
r.updateStatus(ctx, titusdriver.Finished, msg)
return
case runtimeTypes.StatusFailed:
r.updateStatus(ctx, titusdriver.Finished, msg)
r.updateStatus(ctx, titusdriver.Failed, msg)
return
default:
r.updateStatus(ctx, titusdriver.Lost, msg)
Expand Down

0 comments on commit d4da3a3

Please sign in to comment.