When a deployment triggers an outage, the safest first response is reverting to the last known stable state rather than attempting to fix the problem forward in production. You have a working baseline to return to, and most of the time that will restore service faster and more reliably than debugging under pressure.
Example
During a Google Cloud outage in July 2018, an engineer's canary deployment triggered crashes across the front end fleet. Rather than trying to patch the issue in production, they immediately rolled back the change. The crashes stopped, and while recovery wasn't instant due to thundering herds and backend pressure, the team had clear leading indicators that they were on the right path. The rollback gave them a stable foundation to understand what went wrong.
Context
This heuristic works best when you have good deployment practices that make rollbacks safe and fast. It assumes you can get back to a previous state without introducing new problems. The key insight is that fixing forward requires understanding the problem while the system is on fire—rollback buys you time to understand the failure in a stable environment. Of course, this doesn't work for schema migrations or situations where state changes can't be easily reversed, but for most code deployments, it's the right default move.


