我正在运行一个基本的阻塞调度程序,并且它没有明显的原因被杀死。在我的控制台中,一个" Killed"消息出现但是全部。知道我怎么能得到它被杀的原因吗?我的功能就像下面那样简单。
from apscheduler.schedulers.blocking import BlockingScheduler
import pandas as pd
import time
sched = BlockingScheduler()
@sched.scheduled_job('cron', day_of_week='mon,tue', hour=17, minute=45)
def scheduled_job():
print("Start time: ", pd.datetime.now(), "\n")
fct.start()
time.sleep(100)
fct.stop()
print("End time: ", pd.datetime.now(), "\n\n")
return
sched.start()