成功解决schedule.ScheduleValueError: Invalid time format

简介: 成功解决schedule.ScheduleValueError: Invalid time format


目录

解决问题

解决思路

解决方法


 

 

 

 

 

解决问题

schedule.ScheduleValueError: Invalid time format

 

 

 

解决思路

时间表时间表值错误:无效的时间格式

 

 

解决方法

查看at函数

指定作业应该运行的特定时间。

:param time_str:字符串,格式如下:' HH:MM:SS ', ' HH:MM ', ':MM ', ':SS '。考虑到工作的重复频率,格式必须合理;例如,每分钟重复一次的作业不应该以' HH:MM:SS '的形式给出字符串。':MM '和':SS '之间的区别是从所选的时间单位(例如:“every().hour.at(':30')“every().minute.at(':30')”)。

:return:被调用的作业实例

schedule.every().monday.at("9:33").do(run2)

改为

schedule.every().monday.at("09:33").do(run2)


相关文章
|
4月前
|
SQL 开发框架 安全
【译】You probably should stop using a custom TaskScheduler
以更明确的方式控制并发 我认为并发控制(又称速率限制)是应用程序非常重要的方面,重要的方面应该是明确的。 TaskScheduler 相当低级别的工具,我宁愿拥有更高级别的工具。如果工作是 CPU 密集型的,那么 PLINQ 或类似 ActionBlock TPL DataFlow 的东西可能是更好的选择。 如果工作主要是 IO 绑定和异步的,那么可以使用 Parallel.ForEachAsync 或 Polly.RateLimiting 基于 的 SemaphoreSlim 自定义帮助程序类。 结论
52 3
使用result类一定要添加@Data注解“timestamp“:“2023-09-07T07:57:57.497+00:00““status“: 406,No acceptable repre
使用result类一定要添加@Data注解“timestamp“:“2023-09-07T07:57:57.497+00:00““status“: 406,No acceptable repre
|
5月前
|
关系型数据库 MySQL Linux
FATAL ERROR: Could not find my_print_defaults
FATAL ERROR: Could not find my_print_defaults
164 0
|
6月前
|
Kubernetes 容器
Warning FailedScheduling 14m (x12 over 16m) default-scheduler 0/1 nodes are available: 1 node(s
Warning FailedScheduling 14m (x12 over 16m) default-scheduler 0/1 nodes are available: 1 node(s
121 0
|
数据库
This scheduler instance (XXXXX) is still active but was recovered by another
This scheduler instance (XXXXX) is still active but was recovered by another
224 0
|
安全 JavaScript
TS中的unknown类型
TS中的unknown类型
183 0
|
存储 缓存 Java
Null Nothing Unit|学习笔记
快速学习 Null Nothing Unit。
147 0
Null Nothing Unit|学习笔记
|
数据库
This scheduler instance is still active but was recovered by another instance in the cluster
This scheduler instance is still active but was recovered by another instance in the cluster
872 0
|
Java 调度
Leetcode-Medium 621. Task Scheduler
Leetcode-Medium 621. Task Scheduler
116 0
Leetcode-Medium 621. Task Scheduler