Skip to content

Commit dca095e

Browse files
committed
cargo fmt
1 parent 4da6e94 commit dca095e

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

llvm_buildbot_monitor/src/greendragon.rs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,13 @@ async fn find_first_failing_build(
148148
Err(x) => {
149149
let root_cause = x.root_cause();
150150
if let Some(x) = root_cause.downcast_ref::<reqwest::Error>()
151-
&& x.status() == Some(reqwest::StatusCode::NOT_FOUND) {
152-
info!(
153-
"Finding first failing build for {bot_name:?} 404'ed on {build_number}; trying another..."
154-
);
155-
continue;
156-
}
151+
&& x.status() == Some(reqwest::StatusCode::NOT_FOUND)
152+
{
153+
info!(
154+
"Finding first failing build for {bot_name:?} 404'ed on {build_number}; trying another..."
155+
);
156+
continue;
157+
}
157158
return Err(x);
158159
}
159160
Ok(x) => {

0 commit comments

Comments
 (0)