Skip to content

Commit

Permalink
fix(batch): missing rendering on taskrunner
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed May 13, 2024
1 parent 11378b2 commit 075992d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,9 @@ public RunnerResult run(RunContext runContext, TaskCommands taskCommands, List<S

Job result = null;

String projectId = runContext.render(this.projectId);
String region = runContext.render(this.region);

if (resume) {
var existingJob = batchServiceClient.listJobs(ListJobsRequest.newBuilder()
.setParent(String.format("projects/%s/locations/%s", projectId, region))
Expand Down

0 comments on commit 075992d

Please sign in to comment.