DB Push Connection Failure
I am trying to connect to Push migrations to a supabase project. I have already managed to link to it, but when I try the Push, I get a connection failure, -timeout.
What is going on?
$ npx supabase link --project-ref zhkvauouoghegocslzhi -p PWDpwdPWDpwdPWDpwd
Connecting to remote database...
NOTICE (42P06): schema "supabase_migrations" already exists, skipping
NOTICE (42P07): relation "schema_migrations" already exists, skipping
NOTICE (42701): column "statements" of relation "schema_migrations" already exists, skipping
NOTICE (42701): column "name" of relation "schema_migrations" already exists, skipping
NOTICE (42P06): schema "supabase_migrations" already exists, skipping
NOTICE (42P07): relation "seed_files" already exists, skipping
Finished supabase link.
WARNING: Local config differs from linked project. Try updating supabase\config.toml
diff supabase\config.toml zhkvauouoghegocslzhi
--- supabase\config.toml
+++ zhkvauouoghegocslzhi
@@ -58,8 +58,8 @@
[auth]
enabled = true
-site_url = "http://127.0.0.1:3000"
-additional_redirect_urls = ["https://127.0.0.1:3000"]
+site_url = "http://localhost:3000"
+additional_redirect_urls = []
jwt_expiry = 3600
enable_refresh_token_rotation = true
refresh_token_reuse_interval = 10
@@ -101,9 +101,9 @@
[auth.email]
enable_signup = true
double_confirm_changes = true
-enable_confirmations = false
+enable_confirmations = true
secure_password_change = false
-max_frequency = "1s"
+max_frequency = "1m0s"
otp_length = 6
otp_expiry = 3600
[auth.email.template]
$ npx supabase db push --debug -p PWDpwdPWDpwdPWDpwd
Using connection pooler: postgresql://postgres.zhkvauouoghegocslzhi:[YOUR-PASSWORD]@aws-1-eu-west-2.pooler.supabase.com:6543/postgres
Supabase CLI 2.34.3
Connecting to remote database...
failed to connect to postgres: failed to connect to host=aws-1-eu-west-2.pooler.supabase.com user=postgres.zhkvauouoghegocslzhi database=postgres: dial error (timeout: dial tcp 13.41.127.111:5432: i/o timeout)What is going on?