Scheduled machines not starting on schedule

I have two machines in an app which are configured with an hourly schedule. They are not starting at all on any schedule. I can run the machines manually via fly m start MACHINE_ID and they run without issue and exit with code 0. Any suggestions about what could be going wrong or how to debug this?

The machine config is (via fly m status -d MACHINE_ID):

{
  "env": {
    // machine-specific config
  },
  "init": {},
  "guest": {
    "cpu_kind": "shared",
    "cpus": 1,
    "memory_mb": 256
  },
  "image": "registry.fly.io/xxxxxxxxxx",
  "schedule": "hourly",
  "restart": {
    "policy": "no"
  },
  "dns": {
    "skip_registration": true
  }
}

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.