OP-3214 - removed wrong targets on Extractor

This caused missing extractors that should be running on a farm (Slate extractor for Nuke...).
Explicitly set all plugins creating jobs on DL to be triggered only on local.
This commit is contained in:
Petr Kalis 2022-06-15 18:47:58 +02:00
parent 6c5f73cebf
commit 75b6acb0a4
8 changed files with 7 additions and 15 deletions

View file

@ -18,16 +18,6 @@ class InstancePlugin(pyblish.api.InstancePlugin):
super(InstancePlugin, cls).process(cls, *args, **kwargs)
class Integrator(InstancePlugin):
"""Integrator base class.
Wraps pyblish instance plugin. Targets set to "local" which means all
integrators should run on "local" publishes, by default.
"remote" targets could be used for integrators that should run externally.
"""
targets = ["local"]
class Extractor(InstancePlugin):
"""Extractor base class.
@ -38,8 +28,6 @@ class Extractor(InstancePlugin):
"""
targets = ["local"]
order = 2.0
def staging_dir(self, instance):