`Handler<CommitMessage>` has a bunch of `.unwrap()`s because the `handle` function in actix does not return a Result. I don't want to panic the server when anything here goes wrong (at least not in production). I'd rather log the error, and keep the thing going. Maybe use [`catch_unwind`](https://doc.rust-lang.org/std/panic/fn.catch_unwind.html)? Edit: does not seem to work, I can't move the logic to a closure