Explorar o código

定时任务时间修改

liweiquan hai 1 ano
pai
achega
674541b33f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      delete.py

+ 1 - 1
delete.py

@@ -47,7 +47,7 @@ def delete_nonentity_table():
 scheduler = BackgroundScheduler()
 #添加任务,时间间隔2S
 scheduler.add_job(delete_log, 'cron', hour='1', id='delete_job')
-scheduler.add_job(delete_nonentity_table, 'interval', minutes=10)
+scheduler.add_job(delete_nonentity_table, 'cron', hour='2', id='delete_nonentity_table')
 scheduler.start()
 print('任务创建成功')