Skip to content

Commit

Permalink
Merge pull request #99 from ynput/bugfix/AY-7305_Wrong-names-of-Nuke-…
Browse files Browse the repository at this point in the history
…render-jobs-in-Deadline

Fix names of render jobs for Nuke
  • Loading branch information
kalisp authored Jan 7, 2025
2 parents f70cb49 + d2468d7 commit 1b237ab
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ def process(self, instance):
scene_path = baking_script["bakeScriptPath"]
write_node_name = baking_script["bakeWriteNodeName"]

self.job_info.Name = os.path.basename(render_path)

self.plugin_info = self.get_plugin_info(
scene_path=scene_path,
render_path=render_path,
Expand Down Expand Up @@ -139,6 +141,9 @@ def get_job_info(self, job_info=None, **kwargs):
limit_groups = self._get_limit_groups(self.node_class_limit_groups)
job_info.LimitGroups = limit_groups

render_path = instance.data["path"]
job_info.Name = os.path.basename(render_path)

return job_info

def get_plugin_info(
Expand Down

0 comments on commit 1b237ab

Please sign in to comment.