You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(cli): skip unavailable local vector storage (#5535)
## What changed
Local bucket seeding now treats the storage API's local vector service
unavailable responses as non-fatal. The command warns, suggests
refreshing linked service versions and restarting the local stack, then
continues seeding normal storage objects.
## Why
`supabase start` can attempt vector bucket seeding for projects whose
running local storage service cannot serve vector buckets, for example
when local service versions are stale. In that case storage returns
`InvalidRequest` with `Vector service not configured`, which should not
abort startup for projects that are not actively using vector buckets.
fmt.Fprintln(os.Stderr, utils.Yellow("WARNING:"), "Vector buckets are not available in the local storage service. If this project is linked, run `supabase link` to update service versions, then restart the local stack. Skipping vector bucket seeding.")
0 commit comments