Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 1.18 KB

File metadata and controls

15 lines (11 loc) · 1.18 KB

Lessons (compiled by relay distill)

Distilled from past workflow runs in .relay/history/. These are evidence-backed observations, not absolute rules — apply judgment.

Manual edits to this file are preserved across relay distill runs when added under a ## Manual notes section at the bottom.

Planner (5)

  • [warn] Explicitly include steps to review and test adjacent code paths for similar issues when addressing a bug. (run 20260429-1445-bug-rca-fix-tz — files: src/api/orders.py, src/utils/datetime.py)
  • [warn] Include a specific failing test in the plan to demonstrate the bug before applying any fixes. (run 20260429-1445-bug-rca-fix-tz)
  • [warn] Specify the commit hash or provide a detailed rollback procedure in the rollback strategy for clarity and ease of execution. (run 20260429-1445-bug-rca-fix-tz)
  • [info] Set up the test environment to simulate different timezones to validate the robustness of timezone handling logic. (run 20260429-1445-bug-rca-fix-tz)
  • [info] Consider using a more modern library like dateutil or Python's built-in datetime module with timezone support for handling timezone conversions. (run 20260429-1445-bug-rca-fix-tz)