fix(rmm): drop extra arg from delete_lookup RMM call sites #233
Loading…
Reference in a new issue
No description provided.
Delete branch "chore/checks-workflow-4d9d4bf3"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The RMM admin UI (#211) and the timesheet approvals UI (#207) merged independently. The RMM branch was written against an older
delete_lookup(id, base, label)signature, but the mergeddelete_lookuptakes only(id, base). The three RMM delete call sites (connections, device-mappings, alert-rules) passed a vestigial label string, which brokecargo clippy --all-targets -- -D warnings(E0061) and the lib/test builds onmain.Remove the unused third argument so the call sites match the function signature and the other ten
delete_lookupcallers. The human-readable label was already hardcoded in each surrounding error message, so no behavior changes.#MAPPS-224
Superseded: the RMM delete_lookup arity fix landed on main via #237. Closing this duplicate.
Pull request closed