If I got folowing scheduled on wrangler what I should do set to 5min? Or that will always catch into

If I got folowing scheduled on wrangler what I should do set to 5min? Or that will always catch into the 5min case?

  scheduled(event: ScheduledEvent, env: Bindings, ctx: ExecutionContext) {
    switch (event.cron) {
      case "*/5 * * * *":
        break;
      case "*/10 * * * *":
        // Every ten minutes
        break;
      case "0 * * * *":
        // Every hour
        break;
      case "0 0 * * *":
        // Every day
        break;
    }
  },
Was this page helpful?