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