fix: 修改定时任务时间
This commit is contained in:
parent
d4e5e2c73d
commit
564e8b5f06
|
|
@ -37,15 +37,15 @@ def get_data_job(lottery_type='pls'):
|
||||||
print(f'issue:{draw_issue}已经存在')
|
print(f'issue:{draw_issue}已经存在')
|
||||||
|
|
||||||
|
|
||||||
@repeat(every().day.at("18:01"))
|
@repeat(every().day.at("00:01"))
|
||||||
def pls_job():
|
def pls_job():
|
||||||
get_data_job(lottery_type='pls')
|
get_data_job(lottery_type='pls')
|
||||||
|
|
||||||
@repeat(every().day.at("18:02"))
|
@repeat(every().day.at("00:02"))
|
||||||
def plw_job():
|
def plw_job():
|
||||||
get_data_job(lottery_type='plw')
|
get_data_job(lottery_type='plw')
|
||||||
|
|
||||||
@repeat(every().day.at("18:03"))
|
@repeat(every().day.at("00:03"))
|
||||||
def sd_job():
|
def sd_job():
|
||||||
get_data_job(lottery_type='sd')
|
get_data_job(lottery_type='sd')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue