Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #161 from cloudbees/sched-fix-loops
Browse files Browse the repository at this point in the history
[PRODSEC-1433] Schedule fix_loop_duplicates
madchap authored Mar 31, 2021
2 parents 8c07d8e + 09635b4 commit c4f6fef
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker/extra_settings/local_settings.py
Original file line number Diff line number Diff line change
@@ -10,6 +10,13 @@
'schedule': crontab(hour=9, minute=30)
}

# Temp fix - fix possible circular dups
CELERY_BEAT_SCHEDULE['fix_loop_duplicates'] = {
'task': 'dojo.tasks.fix_loop_duplicates_task',
'schedule': crontab(hour=9, minute=00)
}

# ensure jira status reflect on defectdojo findings
CELERY_BEAT_SCHEDULE['jira_status_reconciliation'] = {
'task': 'dojo.tasks.jira_status_reconciliation_task',
'schedule': timedelta(hours=24),

0 comments on commit c4f6fef

Please sign in to comment.