Skip to content

Commit

Permalink
Merge pull request #76 from ynput/bugfix/nuke_keep_frame_dl_submission
Browse files Browse the repository at this point in the history
Fix use existing frames workflow in Nuke
  • Loading branch information
kalisp authored Dec 6, 2024
2 parents 79d2ad3 + f33a7ea commit f2a920d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ def process(self, instance):
for baking_script in instance.data["bakingNukeScripts"]:
self.job_info.JobType = "Normal"

response_data = instance.data["deadlineSubmissionJob"]
response_data = instance.data.get("deadlineSubmissionJob", {})
# 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"]
Expand Down

0 comments on commit f2a920d

Please sign in to comment.