This commit is contained in:
nora 2025-11-11 19:04:14 +01:00
parent 73098095a7
commit 1d31b9c3fe
2 changed files with 2 additions and 2 deletions

View file

@ -83,7 +83,7 @@ async fn background_builder_inner(db: &Db, github_client: &GitHubClient) -> Resu
match next {
Some((nightly, mode)) => {
info!(%nightly, %mode, "Building next nightly");
let result = build_every_target_for_toolchain(db, &nightly, mode, &github_client)
let result = build_every_target_for_toolchain(db, &nightly, mode, github_client)
.await
.wrap_err_with(|| format!("building targets for toolchain {nightly}"));
if let Err(err) = result {

View file

@ -247,7 +247,7 @@ pub async fn notify_build_pass(
.await
.wrap_err("closing issue")?;
db.finish_notification(issue.issue_number as i64).await?;
db.finish_notification(issue.issue_number).await?;
}
Ok(())