From 834c3c8b3b3c17f52f883b945abc56fc7ba3dbca Mon Sep 17 00:00:00 2001 From: zhangjianjun Date: Thu, 12 Aug 2021 12:33:15 +0000 Subject: [PATCH] Modify the time value of a scheduled task Modify the time value of a scheduled task --- cve-vulner-manager/cve-py/controller/timertaskcontroller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cve-vulner-manager/cve-py/controller/timertaskcontroller.py b/cve-vulner-manager/cve-py/controller/timertaskcontroller.py index c02a1e2..dd6b6de 100644 --- a/cve-vulner-manager/cve-py/controller/timertaskcontroller.py +++ b/cve-vulner-manager/cve-py/controller/timertaskcontroller.py @@ -46,7 +46,7 @@ def timertask(): # Parse the issue statistics recipient list # scheduler.add_job(taskcontroller.issue_statistics_email_task, 'cron', day_of_week='0-6', hour=5, minute=30) # Complete the template information of the issue with the data on the CVE official website - scheduler.add_job(taskcontroller.supplement_cve_task, 'interval', minutes=3) + scheduler.add_job(taskcontroller.supplement_cve_task, 'interval', minutes=10) scheduler.add_job(taskcontroller.long_supplement_cve_task, 'cron', day_of_week='0-6', hour=1, minute=30) # Parse the yaml file of mindspore scheduler.add_job(taskcontroller.parse_mindspore_yaml_task, 'cron', day_of_week='0-6', hour=3, minute=30) -- Gitee