mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
For now disallow attaching to 'farm' instances
This commit is contained in:
parent
2a3f9b743b
commit
597b91c135
1 changed files with 8 additions and 0 deletions
|
|
@ -64,6 +64,14 @@ class AttachReviewables(
|
|||
if not attach_instance.data.get("active", True):
|
||||
continue
|
||||
|
||||
# For now do not support attaching to 'farm' instances until we
|
||||
# can pass the 'attaching' on to the farm jobs.
|
||||
if attach_instance.data.get("farm"):
|
||||
self.log.warning(
|
||||
"Attaching to farm instances is not supported yet."
|
||||
)
|
||||
continue
|
||||
|
||||
attach_instances.append(attach_instance)
|
||||
|
||||
instances_names = ", ".join(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue