diff --git a/DEBUGGING.md b/DEBUGGING.md index d40346d6c..c5f225caa 100644 --- a/DEBUGGING.md +++ b/DEBUGGING.md @@ -88,7 +88,7 @@ from data_refinery_common.models.jobs.downloader_job import DownloaderJob from django.utils import timezone from datetime import datetime -JOB_CREATED_AT_CUTOFF = datetime(2019, 9, 19, tzinfo=timezone.utc) +JOB_CREATED_AT_CUTOFF = datetime(2021, 6, 23, tzinfo=timezone.utc) ProcessorJob.failed_objects.filter(created_at__gt=JOB_CREATED_AT_CUTOFF).exclude( pipeline_applied="JANITOR" diff --git a/foreman/data_refinery_foreman/foreman/utils.py b/foreman/data_refinery_foreman/foreman/utils.py index 3fa20829f..772bb4c89 100644 --- a/foreman/data_refinery_foreman/foreman/utils.py +++ b/foreman/data_refinery_foreman/foreman/utils.py @@ -26,7 +26,7 @@ # Setting this to a recent date will prevent the Foreman from queuing/requeuing # jobs created before this cutoff. -JOB_CREATED_AT_CUTOFF = datetime.datetime(2019, 9, 19, tzinfo=timezone.utc) +JOB_CREATED_AT_CUTOFF = datetime.datetime(2021, 6, 23, tzinfo=timezone.utc) def handle_repeated_failure(job) -> None: