We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After researching the case we have found the source of the problem.
In the import process we do:
In create_org_oauth_app_user_roles we have the following error:
create_org_oauth_app_user_roles
ERROR: role "carto_oauth_app_xxx" already exists
And in the grant_org_oauth_app_user_roles:
grant_org_oauth_app_user_roles
ERROR: role "carto_oauth_app_xxx" does not exist
The reason is: in the role creation we are using a db connection to the source database instead of the destination one.
Thanks @owayss for the help
The text was updated successfully, but these errors were encountered:
simon-contreras-deel
Successfully merging a pull request may close this issue.
After researching the case we have found the source of the problem.
In the import process we do:
In
create_org_oauth_app_user_roles
we have the following error:And in the
grant_org_oauth_app_user_roles
:The reason is: in the role creation we are using a db connection to the source database instead of the destination one.
Thanks @owayss for the help
The text was updated successfully, but these errors were encountered: