Fix spelling (#1747)

This commit is contained in:
Thomas Boop
2022-03-11 09:41:54 -05:00
committed by GitHub
parent 29cee52276
commit 292a2e0ab3

View File

@@ -406,7 +406,7 @@ namespace GitHub.Runner.Worker
// create a new timeline record node for 'Finalize job'
IExecutionContext context = jobContext.CreateChild(Guid.NewGuid(), "Complete job", $"{nameof(JobExtension)}_Final", null, null, ActionRunStage.Post);
context.StepTelemetry.Type = "runner";
context.StepTelemetry.Action = "complete_joh";
context.StepTelemetry.Action = "complete_job";
using (var register = jobContext.CancellationToken.Register(() => { context.CancelToken(); }))
{
try