Hi there,
I already did once the ayon/ftrack configuration like the documentation asks and I saw it working once. But it was in a test project and we kept it in hold until now.
Now testing it again, first of all I got one problem to create the custom attributes - it was saying that already had one attribute with same name. I needed identify via ftrack python api and force the delete to this event work again.
Second the event ‘clean hierarchical custom attributes’ is not working. The code has a bug apparently:
# ayon_ftrack.event_handlers_user.action_clean_hierarchical_attributes.py
class CleanHierarchicalAttrsAction(LocalAction):
# (...)
def launch(self, session, entities, event):
project_id = entities[0]["id"]
user_message = "This may take some time"
# This function self.show_message is not finding the "result"
# as a valid parameter to this function:
self.show_message(event, user_message, result=True) # <- error here
# (...)
And third, it’s not showing the “Sync to Ayon” event…I’m trying to debug it but would be amazing if someone help me with that.
I’m using:
server: 1.12.3+202510081341
ayon_ftrack: 1.4.12 and 1.4.11 ( I tested in both versions )
