Reading the incident report on the recent Cloudflare outage.
There is a snippet of Rust code which was where the error was that broke the system after trying to read a config file that was too big. And it was because of an `.unwrap()`. That seems like a crazy thing in production. Not even an `.expect()` or something. Just unwrapped the error and broke half the internet for a few hours.
