提问人:Tio 提问时间:11/17/2023 更新时间:11/17/2023 访问量:7
任务计划程序不会根据要执行的文件中的处理内容运行
Task Scheduler does not run depending on the processing content in the file to be executed
问:
如果是一个只发送电子邮件的进程,如下面的函数,它可以在任务调度程序中执行,没有任何问题。
class Command(BaseCommand):
def handle(self, *args, **options):
self.send_email()
但是,如果在添加需要一些时间的进程后发送电子邮件,如下所示,则任务计划程序将不会执行该进程。
class Command(BaseCommand):
def handle(self, *args, **options):
data = self.check_data()
self.send_email(data)
在函数中,以及使用模块处理统计信息,例如该过程将需要大约 10 秒。check_data()
pandas
sklearn
在这种情况下,我应该怎么做才能使任务计划程序正常运行?
窗户 11 专业版 22H2
答: 暂无答案
评论