Every time I login using a thirparty on my selfhos...
# support-questions-legacy
a
Every time I login using a thirparty on my selfhosted core, my postgres database gives me the following errors:
Copy code
2024-01-20 02:52:02.898 UTC [29195] ERROR:  duplicate key value violates unique constraint "thirdparty_user_to_tenant_third_party_user_id_key"

2024-01-20 02:52:02.898 UTC [29195] DETAIL:  Key (app_id, tenant_id, third_party_id, third_party_user_id)=(public, public, google, 101562078279769124449) already exists.

2024-01-20 02:52:02.898 UTC [29195] STATEMENT:  INSERT INTO thirdparty_user_to_tenant(app_id, tenant_id, user_id, third_party_id, third_party_user_id) VALUES($1, $2, $3, $4, $5)

2024-01-20 02:52:02.901 UTC [29195] ERROR:  duplicate key value violates unique constraint "emailverification_verified_emails_pkey"

2024-01-20 02:52:02.901 UTC [29195] DETAIL:  Key (app_id, user_id, email)=(public, c00e1040-e6fd-464c-8c04-e0aa92d6ce00, adrian.steffanhotmail.de@gmail.com) already exists.

2024-01-20 02:52:02.901 UTC [29195] STATEMENT:  INSERT INTO emailverification_verified_emails(app_id, user_id, email) VALUES($1, $2, $3)
it seems to work, but i am not sure if i should be concerned
2 Views