Not sure if I have dug around enough, pretty sure I did. My current pipelines are getting timed out.
I get timeout reached waiting for health checks to pass for machine XXXXXXXXX: failed to get VM XXXXXXXXXX: Get "https://api.machines.dev/v1/apps/my-remix-app-34bb-staging/machines/XXXXXXXXXXX": net/http: request canceled
How this started was when I got this project it had a failing migration. So it was decided we would remove the database and not resolve the migration issue, so that was done and we created a new postgres instance and linked it. That is when we got the timeout. I tried running fly deploy locally.
Here is our fly.toml
app = "my-remix-app-34bb"
kill_signal = "SIGINT"
kill_timeout = 5
processes = [ ]
[env]
PORT = "8080"
LOG_LEVEL = "debug"
PRIMARY_REGION = "ams"
[deploy]
release_command = "npx prisma migrate deploy"
[experimental]
allowed_public_ports = [ ]
auto_rollback = true
[[services]]
internal_port = 8080
processes = [ "app" ]
protocol = "tcp"
script_checks = [ ]
[services.concurrency]
hard_limit = 50
soft_limit = 40
type = "requests"
[[services.ports]]
handlers = [ "http" ]
port = 80
force_https = true
[[services.ports]]
handlers = [ "tls", "http" ]
port = 443
[[services.tcp_checks]]
grace_period = "2s"
interval = "45s"
restart_limit = 0
timeout = "2s"
[[services.http_checks]]
interval = "30s"
grace_period = "90s"
method = "get"
path = "/healthcheck"
protocol = "http"
timeout = "2s"
tls_skip_verify = false
[services.http_checks.headers]