Hi,
I have a Supabase project (free plan, eu-west-1) connected to a Next.js app on Vercel.
What happened:
I reset the database password in Project Settings
I updated DATABASE_URL on Vercel with the new password
But between the reset and the update, my cron jobs (running every minute) kept hitting the database with the old password
Result: many authentication failures in a few minutes
Current situation:
The password is correct (verified)
DATABASE_URL is up to date on Vercel
But all connections fail with:
FATAL: Circuit breaker open: Unable to establish connection to upstream database
This has been going on for about 1 hour
What I've tried:
Session pooler (port 5432) → circuit breaker open
Transaction pooler (port 6543) → circuit breaker open
Redeployed on Vercel → same error
Waited 1h → still blocked
My questions:
How long does the circuit breaker take to reset?
Is there a way to manually reset it?
Can support intervene?
Thanks for any help!