Files
abot/plugins/system_updater/config.toml
Liu adbf4471cf 调整插件执行模式并修复全球新闻后台线程
1. 为消息插件新增按消息动态超时能力,并让机器人侧按当前命令读取超时策略。
2. 将斗鱼日报、身价关系图/重算、百科问答出题判题切到后台执行。
3. 将系统更新、黑丝视频、猛男视频、成员锐评默认配置为后台模式并放宽超时。
4. 修复全球新闻插件在线程中直接挂协程导致任务不真正执行的问题。
2026-05-01 11:37:25 +08:00

15 lines
637 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[SystemUpdater]
enable = true
commands = ["更新系统", "系统更新", "重启系统", "更新重启"]
wait_time = 5
# 设置管理员微信ID只有这些ID可以执行更新操作
shell_path= "/home/liuwei/abot/restart.sh"
[runtime]
# 系统更新属于典型后台维护任务:
# 1. 命令命中后会执行重启脚本,整个过程可能持续几十秒到数分钟;
# 2. 这类任务不应该长期占住前台消息并发槽位,否则会影响其他插件收消息;
# 3. 因此默认切到后台执行,并把总超时放宽到 10 分钟。
message_dispatch_mode = "background"
plugin_process_timeout_seconds = 600