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
Right now if you type the wrong database name in your postgres string, you'll get the following error:
** (Postgrex.Error) ERROR 55000 (object_not_in_prerequisite_state) replication slot "electric_slot_default" was not created in this database
Instead we should just say something more helpful like that we could connect but the database name isn't correct. I'm assuming we are connecting but then the replication slot creation fails — so we could put in a check that the database exists first.
The text was updated successfully, but these errors were encountered:
Right now if you type the wrong database name in your postgres string, you'll get the following error:
** (Postgrex.Error) ERROR 55000 (object_not_in_prerequisite_state) replication slot "electric_slot_default" was not created in this database
Instead we should just say something more helpful like that we could connect but the database name isn't correct. I'm assuming we are connecting but then the replication slot creation fails — so we could put in a check that the database exists first.
The text was updated successfully, but these errors were encountered: