mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
changed "filesequence" target to "farm"
This commit is contained in:
parent
6e127d273c
commit
4b8dd165d2
4 changed files with 6 additions and 4 deletions
|
|
@ -232,7 +232,7 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
|
|||
'publish',
|
||||
roothless_metadata_path,
|
||||
"--targets", "deadline",
|
||||
"--targets", "filesequence"
|
||||
"--targets", "farm"
|
||||
]
|
||||
|
||||
# Generate the payload for Deadline submission
|
||||
|
|
|
|||
|
|
@ -21,7 +21,8 @@ class CollectRenderedFiles(pyblish.api.ContextPlugin):
|
|||
|
||||
"""
|
||||
order = pyblish.api.CollectorOrder - 0.2
|
||||
targets = ["filesequence"]
|
||||
# Keep "filesequence" for backwards compatibility of older jobs
|
||||
targets = ["filesequence", "farm"]
|
||||
label = "Collect rendered frames"
|
||||
|
||||
_context = None
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@ class ValidateFileSequences(pyblish.api.ContextPlugin):
|
|||
"""Validates whether any file sequences were collected."""
|
||||
|
||||
order = pyblish.api.ValidatorOrder
|
||||
targets = ["filesequence"]
|
||||
# Keep "filesequence" for backwards compatibility of older jobs
|
||||
targets = ["filesequence", "farm"]
|
||||
label = "Validate File Sequences"
|
||||
|
||||
def process(self, context):
|
||||
|
|
|
|||
|
|
@ -133,7 +133,7 @@ class PypeCommands:
|
|||
print(f"setting target: {target}")
|
||||
pyblish.api.register_target(target)
|
||||
else:
|
||||
pyblish.api.register_target("filesequence")
|
||||
pyblish.api.register_target("farm")
|
||||
|
||||
os.environ["OPENPYPE_PUBLISH_DATA"] = os.pathsep.join(paths)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue