Skip to content

Commit

Permalink
get jobid properly
Browse files Browse the repository at this point in the history
  • Loading branch information
jherns committed Apr 13, 2023
1 parent 12853c7 commit 33ac845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Runner.Worker/ActionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ private async Task BuildActionContainerAsync(IExecutionContext executionContext,
{
if (MessageUtil.IsRunServiceJob(executionContext.Global.Variables.Get("job_request_type")))
{
actionDownloadInfos = await launchServer.ResolveActionsDownloadInfoAsync(executionContext.Global.Plan.PlanId, Guid.Parse(executionContext.Global.Variables.Get("system.jobId")), new WebApi.ActionReferenceList { Actions = actionReferences }, executionContext.CancellationToken);
actionDownloadInfos = await launchServer.ResolveActionsDownloadInfoAsync(executionContext.Global.Plan.PlanId, executionContext.Root.Id, new WebApi.ActionReferenceList { Actions = actionReferences }, executionContext.CancellationToken);
}
else
{
Expand Down

0 comments on commit 33ac845

Please sign in to comment.