Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos in docs of JobDispatcher #1191

Merged
merged 3 commits into from
Jul 13, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update src/Runner.Listener/JobDispatcher.cs
  • Loading branch information
fhammerl authored Jul 12, 2021
commit a45b7c8ac2978aafd2555897b42ddf5d2b129755
2 changes: 1 addition & 1 deletion src/Runner.Listener/JobDispatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ private async Task EnsureDispatchFinished(WorkerDispatcher jobDispatch, bool can
Trace.Error(ex);

jobDispatch.WorkerCancellationTokenSource.Cancel();
// make sure worker the process exits before we rethrow, otherwise we might leave orphan worker process behind.
// make sure the worker process exits before we rethrow, otherwise we might leave orphan worker process behind.
await jobDispatch.WorkerDispatch;

// rethrow original exception
Expand Down