Error: force launch for job "my_problem_job" failed: can't force run non-tracked job

I am having an issue running a batch job. We are running dozens of similar jobs on the same cluster with nearly identical job templates. For some reason this job is throwing an error when we attempt to run it.

job "my_problem_job" {

  datacenters = ["dc1",]

  type = "batch"

  # Uncomment this code to make the job periodic based on consul config
  periodic {
    cron             = "0 21 * * *"
    prohibit_overlap = true
  }

  parameterized {
    payload = "optional"
    meta_required = []
    meta_optional = ["year", "month"
]
  }

  priority = "50"

  meta {
    environment = "dev"
  }

  constraint {
    attribute = "${node.class}"
    value = "batch"
  }

  group "my-problem-job" {

    restart {
      # The number of attempts to run the job within the specified interval.
      attempts = 0
      interval = "5m"

      # The "delay" parameter specifies the duration to wait before restarting
      # a task after it has failed.
      delay = "15s"

      # The "mode" parameter controls what happens when a task has restarted
      # "attempts" times within the interval. "delay" mode delays the next
      # restart until the next interval. "fail" mode does not restart the task
      # if "attempts" has been hit within the interval.
      mode = "fail"
    }

    count = 1

    ephemeral_disk {
      size = "50"
    }

    task "my-problem-job" {

      meta {
        build_number = "-1"
      }

      driver = "docker"

      config {
        image = "<super-secret-image>:latest"
        force_pull = true
      }

      logs {
        max_files     = 3
        max_file_size = 10
      }


      resources {
        cpu    = "100"
        memory = "350"

        network {
          mbits = 10
        }
      }
    }
  }
}

I can successfully submit the job to the cluster, but when I attempt to force run the job I get the following error:

Unexpected response code: 500 (rpc error: rpc error: force launch for job "my_problem_job" failed: can't force run non-tracked job