Conversation
|
@claude /review |
|
Claude finished @arthanson's task in 1m 23s —— View job Code Review: #493 fix event rule handling for NetBox 4.5
OverviewThis PR fixes a breaking change in The original commit ( AssessmentCorrectness ✅ The version boundary Issues
Minor StyleThe import SummaryThe fix is functionally correct and the version-based dispatch approach is reasonable for this project's supported version range (4.4.1–4.6.99). The primary concern worth addressing before merge is the robustness of version string parsing for non-release builds. Everything else is minor. |
Fixes: #493
process_event_rulesfunction signature got changed in NetBox 4.5.2, this uses version check to make it forwards and backwards compatible. The other method is via using inspect, but thought this was lighter weight.