Hi, Im receiving such an error during last 15hours. Tried to restart it many times but nothing helps. The app is deployed via Docker and uses Postgres. Any ideas how to fix it? Thanks in advance
Have you tried restarting your postgres app: fly postgres restart --app <app-name>
? It might have failed to register its health checks on its last restart
Add the --force
flag
Thanks for the help. I’ve solved my issue by doing the following (maybe in future it will help someone)
- run to get the machine id:
flyctl status -a <app name>
flyctl -a <app name> machine restart <machine id>
flyctl pg restart -a <app name>