flyctl deploy error

I’m running into the following error when running flyctl deploy:

Error You ran into an error connecting to the Fly API. If the error persists, keep this request ID to help Fly Support track it down: 01G9NAEAGNWJEFT0ATT00X6AWJ-sea

Hey! Could you double check your fly.toml? Seems like the format might be coming in unexpectedly for service.concurrency (see docs here)

Ah, thanks! I had this:

[[services.concurrency]]
  hard_limit = 25
  soft_limit = 20
  type = "connections"

Switching it to the following fixed the issue:

[services.concurrency]
  hard_limit = 25
  soft_limit = 20
  type = "connections"
1 Like