Skip to content

Commit

Permalink
set schedule time 30 minutes (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlcoo authored Nov 12, 2024
1 parent 281db76 commit b47658b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easypackages/pypi/watch_update_source/src/schedule_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def run_update_task():
def main():
# 从环境变量中获取 API_KEY 和 URL, 并修改 update-pypi.yaml
# 每10分钟获取增量更新进行构建执行
schedule.every(10).minutes.do(run_update_task)
schedule.every(30).minutes.do(run_update_task)

while True:
if not check_process_running():
Expand Down

0 comments on commit b47658b

Please sign in to comment.