Skip to content

Commit

Permalink
Fix assignment of job dependency
Browse files Browse the repository at this point in the history
Without it baking job wouldnt wait for rendering job.
  • Loading branch information
kalisp committed Jan 24, 2025
1 parent 1bee2da commit a278015
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def process(self, instance):
# frames_farm instance doesn't have render submission
if response_data.get("_id"):
self.job_info.BatchName = response_data["Props"]["Batch"]
self.job_info.JobDependency0 = response_data["_id"]
self.job_info.JobDependencies.append(response_data["_id"])

render_path = baking_script["bakeRenderPath"]
scene_path = baking_script["bakeScriptPath"]
Expand Down

0 comments on commit a278015

Please sign in to comment.