Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve the panic message for schedule build errors (#7860)
# Objective The `ScheduleBuildError` type has a `Display` implementation which beautifully formats the error. However, schedule build errors are currently reported using `unwrap()`, which uses the `Debug` implementation and makes the error message look unfished. ## Solution Use `unwrap_or_else` so we can customize the formatting of the error message.
- Loading branch information