Skip to content

Commit

Permalink
Merge pull request #34620 from dimagi/gh/reprocess-archive-stub/incre…
Browse files Browse the repository at this point in the history
…ase-timeout

Increase `reprocess_archive_stubs` timeout from 5 minutes to 24 hours
  • Loading branch information
gherceg authored May 14, 2024
2 parents 1e4cea8 + 4318fce commit b1aba00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion corehq/form_processor/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def _reprocess_archive_stubs():
reprocess_archive_stubs.delay()


@serial_task("reprocess_archive_stubs", queue=settings.CELERY_PERIODIC_QUEUE)
@serial_task("reprocess_archive_stubs", timeout=24 * 60 * 60, queue=settings.CELERY_PERIODIC_QUEUE)
def reprocess_archive_stubs():
# Check for archive stubs
from couchforms.models import UnfinishedArchiveStub
Expand Down

0 comments on commit b1aba00

Please sign in to comment.