Manage Tab bug when using Library project assets

Hey everyone,

It seems there’s a bug when using Library project assets in Nuke. If you have nodes with AYON custom knobs in the same script as nodes from the current project, the AYON Manage tab appears blank. Deleting the Library project nodes resolves this issue.

Let me know if you need any other details or have experienced similar issues.
Cheers,
George

This may be fixed in recent ayon-core versions because it’s way less picky with faulty/invalid representation ids it can’t find in current project.

What’s your addon versions in your current bundle?

A new release was made today actually of ayon-core - and it may be nice to update!?


However, thinking of it now… there’s an open PR that tries to solve some issues with invalid representation ids Ignore containers with invalid UUID in representation by fabiaserra · Pull Request #1 · ynput/ayon-nuke · GitHub but I believe that solely revolves around completely invalid representation ids (wrong uuid format) instead of those just not existing in current project - so if loaded within AYON from its library loader that should still work without this PR.


If it doesn’t work with the latest versions then maybe you can try running python code:

from ayon_core.pipeline import registered_host

host = registered_host()
for container in host.get_containers():
    print(containers)

See if that logs any errors … and maybe report the result of those prints and share here so we can see what “faulty data” you’re working with.

Hi @BigRoy thanks so much for your reply.
Can confirm core 0.4.3 shows both library and current project asset where as 0.4.0 shows blank.
The library asset is shown as ‘Entity N/A’

1 Like