Failed to restore from backup: All subscriptions and replication slots must be dropped before a backup can be restored.
Last edited: 1/18/2025
As the error suggests, you must first drop any current subscriptions or replication slots to restore backups.
You can check those with:
1SELECT * FROM pg_replication_slots;23SELECT * FROM pg_subscription;You can drop them with:
1DROP SUBSCRIPTION <subscription>;23SELECT pg_drop_replication_slot(slot_name);NOTE: These are destructive actions. This is fine since you will overwrite your database with a backup.