Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clippy: ignore result_large_err clippy lint for Tablet::from_raw_tablet
See: https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err I justified this decision in the code: ``` // Ignore clippy lints here. Clippy suggests to // Box<> `Err`` variant, because it's too large. It does not // make much sense to do so, looking at the caller of this function. // Tablet returned in `Err` variant is used as if no error appeared. // The only difference is that we use node ids to emit some debug logs. ```
- Loading branch information