Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Previous PR append - wait for databse
The real cause the problem here is that the database migration was failing due to the database not being connectable on startup. The statement is just skipped, so the databse is never migrated as the database is up by the time the app is starting. We'll wait 15 seconds in the startup script before running the migration, ensuring that the database has started. Looking at logs, the database is ready for connections a few seconds after the error is thrown so this should be sufficient.
- Loading branch information
7c22498
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not certain why this issue has not surfaced until now