Skip to content

Commit a37bb5a

Browse files
authored
Merge branch 'develop' into enhancement/93-do-not-set-environment-core-variables
2 parents c6243ed + 1b237ab commit a37bb5a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

client/ayon_deadline/plugins/publish/nuke/submit_nuke_deadline.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ def process(self, instance):
108108
scene_path = baking_script["bakeScriptPath"]
109109
write_node_name = baking_script["bakeWriteNodeName"]
110110

111+
self.job_info.Name = os.path.basename(render_path)
112+
111113
self.plugin_info = self.get_plugin_info(
112114
scene_path=scene_path,
113115
render_path=render_path,
@@ -139,6 +141,9 @@ def get_job_info(self, job_info=None, **kwargs):
139141
limit_groups = self._get_limit_groups(self.node_class_limit_groups)
140142
job_info.LimitGroups = limit_groups
141143

144+
render_path = instance.data["path"]
145+
job_info.Name = os.path.basename(render_path)
146+
142147
return job_info
143148

144149
def get_plugin_info(

0 commit comments

Comments
 (0)