Skip to content

Commit

Permalink
Merge pull request #74 from ynput/bugfix/nuke_local_render
Browse files Browse the repository at this point in the history
Fix skipping local instances
  • Loading branch information
kalisp authored Dec 5, 2024
2 parents 510e153 + b737881 commit 79d2ad3
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ class NukeSubmitDeadline(

def process(self, instance):
"""Plugin entry point."""
if not instance.data.get("farm"):
self.log.debug("Should not be processed on farm, skipping.")
return

self._instance = instance

context = instance.context
Expand Down

0 comments on commit 79d2ad3

Please sign in to comment.