fix(plugin): 插件启动钩子超时改为可配置并放宽默认值 - #3
Open
fall2wish wants to merge 1 commit into
Open
Conversation
来源平台插件(如 bilibili-publisher)启动时需访问平台 API, 网络慢或主机冷启动时登录检查可能超过原 10 秒硬编码超时, 导致插件被 PluginManager 判定启动失败且无自动重试。 - 新增 main.yml 配置 plugin.hookTimeoutSeconds(默认 60,范围 1-3600) - DynamicApplication 从配置读取并传入 PluginManager(构造期惰性加载, 与 run() 共用 defaultMainConfig,避免环境变量配置被静默丢弃) - PluginManager 默认钩子超时 10s -> 60s - 补充配置校验、重启标记与单元测试
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
bilibili-publisher 启动时需访问平台 API,
网络慢或主机冷启动时登录检查可能超过原 10 秒硬编码超时,
导致插件被 PluginManager 判定启动失败且无自动重试。