WatchScheduler.Development.json 879 B

12345678910111213141516171819
  1. {
  2. "$schema": "https://gitee.com/dotnetchina/Furion/raw/v4/schemas/v4/furion-schema.json",
  3. // dev/test 覆写:仅在 ASPNETCORE_ENVIRONMENT=Development 时启用调试入口。
  4. // 不被部署到生产环境的发布产物中(生产仍走 WatchScheduler.json 的默认 false)。
  5. "WatchScheduler": {
  6. "DebugEndpointEnabled": true
  7. },
  8. // S8-WATCH-SCHEDULER-MINIMAL-ENABLEMENT-1(2026-09-04):与 base WatchScheduler.json 保持一致,
  9. // 不再显式覆写为 false——否则本文件会在 Development 环境下把 base 的开启值重新压回关闭,
  10. // 导致仅改 base 文件在 Development 部署下无效。S8:WatchScheduler:Enabled 未在此节声明,
  11. // 继承 base 的 true;TimeoutAutoEscalation / ActiveFlowStuckScan 同样继承 base 的 false,不在此新增。
  12. "S8": {
  13. "Scheduler": {
  14. "Enabled": true
  15. }
  16. }
  17. }