diff --git a/plugins/track.py b/plugins/track.py index 0a85f43..d2ac646 100644 --- a/plugins/track.py +++ b/plugins/track.py @@ -59,8 +59,8 @@ async def update_track(time: int = None): print("run ok!") -@scheduler.scheduled_job("cron", minute="*/10", id="track") -async def run_every_10_minute(): +@scheduler.scheduled_job("cron", minute="*/5", id="track") +async def run_every_5_minute(): await update_track()