This commit is contained in:
xyj 2024-03-05 09:57:41 +08:00
parent 1277fcc9f8
commit b5e910e0db
1 changed files with 3 additions and 2 deletions

View File

@ -8,11 +8,12 @@ def job():
# 每半小时执行一次
schedule.every(10).minutes.do(job)
schedule.every(5).minutes.do(job)
try:
while True:
schedule.run_pending()
time.sleep(5)
except Exception as e:
subprocess.Popen(['supervisorctl restart push_stream'], shell=True)
subprocess.Popen(['supervisorctl reload'], shell=True)