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
Getting started with the current master branch might have you hit the following error:
Traceback (mostrecentcalllast):
File"C:\path\to\avalon-setup\git\avalon-launcher\launcher\app.py", line79, inon_object_createdself.controller.init()
File"C:\path\to\avalon-setup\git\avalon-launcher\launcher\control.py", line265, ininitactions=self.collect_compatible_actions(discovered_actions)
File"C:\path\to\avalon-setup\git\avalon-launcher\launcher\control.py", line479, incollect_compatible_actionsifnotAction().is_compatible(session):
File"C:\path\to\avalon-setup\git\colorbleed-config\colorbleed\launcher_actions.py", line21, in__init__self.config=lib.get_application(self.name)
File"C:\path\to\avalon-setup\git\avalon-core\avalon\lib.py", line158, inget_application"No application definition could be found for '%s'"%nameValueError: Noapplicationdefinitioncouldbefoundfor'fusionrendernode9'
This is likely due to the Launcher trying to find a fitting application .toml definition for the application which are stored outside of the config.
Solution
This should allow to pass in a friendly manner and describe how to resolve it in the message.
For now a workaround is to comment out the last two lines here so you have something like:
defregister_launcher_actions():
"""Register specific actions which should be accessible in the launcher"""pass# pipeline.register_plugin(api.Action, FusionRenderNode)# pipeline.register_plugin(api.Action, VrayRenderSlave)
When you installed with avalon-setup the default application definition .toml files can be found in avalon-setup\bin.
The text was updated successfully, but these errors were encountered:
Issue
Getting started with the current master branch might have you hit the following error:
This is likely due to the Launcher trying to find a fitting application
.toml
definition for the application which are stored outside of the config.Solution
This should allow to pass in a friendly manner and describe how to resolve it in the message.
For now a workaround is to comment out the last two lines here so you have something like:
When you installed with
avalon-setup
the default application definition.toml
files can be found inavalon-setup\bin
.The text was updated successfully, but these errors were encountered: