We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4da6e94 commit dca095eCopy full SHA for dca095e
1 file changed
llvm_buildbot_monitor/src/greendragon.rs
@@ -148,12 +148,13 @@ async fn find_first_failing_build(
148
Err(x) => {
149
let root_cause = x.root_cause();
150
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
- }
+ && x.status() == Some(reqwest::StatusCode::NOT_FOUND)
+ {
+ info!(
+ "Finding first failing build for {bot_name:?} 404'ed on {build_number}; trying another..."
+ );
+ continue;
157
+ }
158
return Err(x);
159
}
160
Ok(x) => {
0 commit comments