changed "filesequence" target to "farm"

This commit is contained in:
iLLiCiTiT 2021-12-10 14:31:56 +01:00
parent 6e127d273c
commit 4b8dd165d2
4 changed files with 6 additions and 4 deletions

View file

@ -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

View file

@ -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

View file

@ -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):

View file

@ -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)