mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
Hound
This commit is contained in:
parent
f3ce4c6b71
commit
36ef2b5b5f
1 changed files with 5 additions and 5 deletions
|
|
@ -336,9 +336,8 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
|
||||||
return
|
return
|
||||||
|
|
||||||
instance_skeleton_data = create_skeleton_instance(
|
instance_skeleton_data = create_skeleton_instance(
|
||||||
instance,
|
instance, families_transfer=self.families_transfer,
|
||||||
families_transfer=self.families_transfer,
|
instance_transfer=self.instance_transfer)
|
||||||
instance_transfer=self.instance_transfer)
|
|
||||||
"""
|
"""
|
||||||
if content of `expectedFiles` list are dictionaries, we will handle
|
if content of `expectedFiles` list are dictionaries, we will handle
|
||||||
it as list of AOVs, creating instance for every one of them.
|
it as list of AOVs, creating instance for every one of them.
|
||||||
|
|
@ -447,8 +446,9 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
|
||||||
render_job["Props"]["Batch"] = instance.data.get(
|
render_job["Props"]["Batch"] = instance.data.get(
|
||||||
"jobBatchName")
|
"jobBatchName")
|
||||||
else:
|
else:
|
||||||
render_job["Props"]["Batch"] = os.path.splitext(
|
batch = os.path.splitext(os.path.basename(
|
||||||
os.path.basename(instance.context.data.get("currentFile")))[0]
|
instance.context.data.get("currentFile")))[0]
|
||||||
|
render_job["Props"]["Batch"] = batch
|
||||||
# User is deadline user
|
# User is deadline user
|
||||||
render_job["Props"]["User"] = instance.context.data.get(
|
render_job["Props"]["User"] = instance.context.data.get(
|
||||||
"deadlineUser", getpass.getuser())
|
"deadlineUser", getpass.getuser())
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue