百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
返回工具页/返回 Issues 列表
#2592·Hangfire

DisableConcurrentExecutionAttribute 错误消息拼写错误

作者: AleksanderNekr创建于 2026年9月14日更新于 2026年9月14日

在 DisableConcurrentExecutionAttribute 的 ctor 中,此验证 `if (timeoutInSeconds < 0) throw new ArgumentException("Timeout 参数值应大于零。")` 在错误消息中包含拼写错误:不是大于,是 > 于。预期的内容应该是: `if (timeoutInSeconds < 0) throw new ArgumentException("Timeout 参数值应不小于零。")`

内容来源: HangfireIO/Hangfire

查看 GitHub 原文在 GitHub 查看讨论