failed attributes
| status |
attribute |
duration |
| failed |
default.checks.aarch64-darwin.treefmt
|
2s |
treefmt-check:
log::warn!("failed to start rayon thread pool ({e}); falling back to a single thread");
- let _ = rayon::ThreadPoolBuilder::new() …
treefmt-check:
log::warn!("failed to start rayon thread pool ({e}); falling back to a single thread");
- let _ = rayon::ThreadPoolBuilder::new().num_threads(1).build_global();
+ let _ = rayon::ThreadPoolBuilder::new()
+ .num_threads(1)
+ .build_global();
}
}
|
| failed |
default.checks.aarch64-linux.treefmt
|
1s |
treefmt-check:
if let Err(e) = rayon::ThreadPoolBuilder::new().build_global() {
log::warn!("failed to start rayon thread pool ({e}); falling back …
treefmt-check:
if let Err(e) = rayon::ThreadPoolBuilder::new().build_global() {
log::warn!("failed to start rayon thread pool ({e}); falling back to a single thread");
- let _ = rayon::ThreadPoolBuilder::new().num_threads(1).build_global();
+ let _ = rayon::ThreadPoolBuilder::new()
+ .num_threads(1)
+ .build_global();
}
}
|
| failed |
default.checks.x86_64-linux.treefmt
|
1s |
treefmt-check:
if let Err(e) = rayon::ThreadPoolBuilder::new().build_global() {
log::warn!("failed to start rayon thread pool ({e}); falling back …
treefmt-check:
if let Err(e) = rayon::ThreadPoolBuilder::new().build_global() {
log::warn!("failed to start rayon thread pool ({e}); falling back to a single thread");
- let _ = rayon::ThreadPoolBuilder::new().num_threads(1).build_global();
+ let _ = rayon::ThreadPoolBuilder::new()
+ .num_threads(1)
+ .build_global();
}
}
|