Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #137 from tokejepsen/feature/deadline_submission_w…
Browse files Browse the repository at this point in the history
…ait_for_scene_file

Deadline wait for scene file to sync.
  • Loading branch information
mkolar authored May 12, 2020
2 parents 13aece1 + 4ff3840 commit e728df5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pype/plugins/fusion/publish/submit_deadline.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ def process(self, instance):
# Top-level group name
"BatchName": filename,

# Asset dependency to wait for at least the scene file to sync.
"AssetDependency0": filepath,

# Job name, as seen in Monitor
"Name": filename,

Expand Down
3 changes: 3 additions & 0 deletions pype/plugins/maya/publish/submit_maya_deadline.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,9 @@ def process(self, instance):
# Top-level group name
"BatchName": filename,

# Asset dependency to wait for at least the scene file to sync.
"AssetDependency0": filepath,

# Job name, as seen in Monitor
"Name": jobname,

Expand Down
3 changes: 3 additions & 0 deletions pype/plugins/nuke/publish/submit_nuke_deadline.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ def payload_submit(self,
# Top-level group name
"BatchName": script_name,

# Asset dependency to wait for at least the scene file to sync.
"AssetDependency0": script_path,

# Job name, as seen in Monitor
"Name": jobname,

Expand Down

0 comments on commit e728df5

Please sign in to comment.