summaryrefslogtreecommitdiff
path: root/server/src
diff options
context:
space:
mode:
Diffstat (limited to 'server/src')
-rw-r--r--server/src/git_root.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/git_root.rs b/server/src/git_root.rs
index 01cc2b5..71ad96f 100644
--- a/server/src/git_root.rs
+++ b/server/src/git_root.rs
@@ -535,7 +535,7 @@ async fn setup_project_root(
let bg_project_id = project_id.clone();
tokio::spawn(async move {
match bg_repo.fetch(&main_branch).await {
- Ok(()) => {}
+ Ok(_) => {}
Err(e) => {
error!("{bg_project_id}: fetch {main_branch} returned {e:?}");
}