CTRL ALTSCtrl Alt Solvereal-world developer knowledge
SearchJoin
Ctrl Alt Solve — Don't just ask what to do. Learn what developers experienced when they did it.
M

Muthu Kumar

@muthukumar

QA Engineer

0 followers0 following0 expertise score2 posts

Weekend open-source contributor. Weekday production warrior. (tamil/kannada)

ReactNode.jsMongoDB

Experiences shared

QuestionJul 11, 2026·1 entry

do you test webhook retries without drowning in fixtures?

Our provider retries aggressively and out of order under failure. Naive fixtures make CI slow and still miss race conditions. Looking for patterns that keep suites fast and realistic. Do you fake the provider clock, or replay recorded payloads? How do you assert idempotency without flaky sleeps? Share a setup that survived production incident recreations.

161 views0 likes0 comments0 bookmarks
#ci#webhooks#testing
MMuthu KumarRead →
ExperienceJul 10, 2026·1 entry

broke when we moved auth to the edge

We moved session checks to the edge to cut latency on every page load. It worked in staging, then failed on preview deploys when cookies crossed domains. Clock skew between edge and origin made short-lived tokens look expired. We fixed cookie domains per environment and added skew-tolerant expiry. Median auth path dropped about 120ms, with fewer cold-start surprises. Lesson: test cookies across every environment before calling a migration done.

157 views0 likes0 comments0 bookmarks
#edge#nextjs#auth
Muthu Kumar
M
Read →