Hi,
I’m using airbyte v40.22 at local machine.
I add new custom connector, but it doesn’t show up in the UI, but it exists in airbyte-db/actor_definition table.
Here is db:
But not show up in UI
Any ideas to fix this issue?
Hi,
I’m using airbyte v40.22 at local machine.
I add new custom connector, but it doesn’t show up in the UI, but it exists in airbyte-db/actor_definition table.
Here is db:
But not show up in UI
Any ideas to fix this issue?
Hey, just found a solution by myself
Just need to update the public status of connetor:
Open a Window PowerShell
docker exec -ti airbyte-db psql -U docker -d airbyte
UPDATE actor_definition SET public = true WHERE name = ‘{connector_name}’;
or just
UPDATE actor_definition SET public = true WHERE true;
Hello there! You are receiving this message because none of your fellow community members has stepped in to respond to your topic post. (If you are a community member and you are reading this response, feel free to jump in if you have the answer!) As a result, the Community Assistance Team has been made aware of this topic and will be investigating and responding as quickly as possible.
Some important considerations that will help your to get your issue solved faster:
Thank you for your time and attention.
Best,
The Community Assistance Team
I was running into the same issue and this solved it for me too. Thanks!
Hello Phuc Dinh, it’s been a while without an update from us. Are you still having problems or did you find a solution?