You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def process(self, instance):
"""Plugin entry point."""
self._instance = instance
if not instance.data.get("farm"):
self.log.debug("Should not be processed on farm, skipping.")
return
context = instance.context
self._deadline_url = instance.data["deadline"]["url"]
assert self._deadline_url, "Requires Deadline Webservice URL"
Relevant log output:
Traceback (most recent call last):
File "C:\Users\jiri.sindelar\AppData\Local\Ynput\AYON\dependency_packages\ayon_2406251801_windows.zip\dependencies\pyblish\plugin.py", line 528, in __explicit_process
runner(*args)
File "C:\Users\jiri.sindelar\AppData\Local\Ynput\AYON\addons\deadline_0.5.0\ayon_deadline\plugins\publish\nuke\submit_nuke_deadline.py", line 51, in process
self._deadline_url = instance.data["deadline"]["url"]
KeyError: 'deadline'
The text was updated successfully, but these errors were encountered:
Is there an existing issue for this?
Description
Current Behavior
Local machine rendering from Nuke is failing on not finding tghe instance.data["deadline"]["url"].
Expected Behavior
Dedadline is not required for local publish, should be skipped
Steps To Reproduce:
Additional context:
Version
Server 1.5.4, core 1.0.10, deadline 0.5.0, nuke 0.2.6
What platform were you running when you found the bug?
Windows 10
You can also provide any additional information relevant to the issue.
Skipping the submit_nuke_deadline seems to help:
ayon-deadline/client/ayon_deadline/plugins/publish/nuke/submit_nuke_deadline.py
Line 50 in 510e153
Relevant log output:
The text was updated successfully, but these errors were encountered: