Skip to content

Commit

Permalink
Fix use existing frames workflow in Nuke
Browse files Browse the repository at this point in the history
This use case doesn't have render job submission data
  • Loading branch information
kalisp committed Dec 6, 2024
1 parent 6fad831 commit f60f728
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,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 f60f728

Please sign in to comment.