Loading crates/indexer/src/modules/code/indexing_pipeline.rs +6 −0 Original line number Diff line number Diff line Loading @@ -71,6 +71,8 @@ impl CodeIndexingPipeline { .repository_fetch_duration .record(fetch_start.elapsed().as_secs_f64(), &[]); context.progress.notify_in_progress().await; let extract_start = Instant::now(); archive::extract_tar_gz(&archive_bytes, temp_dir.path()) .map_err(|e| HandlerError::Processing(format!("failed to extract archive: {e}"))) Loading @@ -79,6 +81,8 @@ impl CodeIndexingPipeline { .repository_extract_duration .record(extract_start.elapsed().as_secs_f64(), &[]); context.progress.notify_in_progress().await; let indexed_at = Utc::now(); self.run_indexing( context, Loading Loading @@ -178,6 +182,8 @@ impl CodeIndexingPipeline { ); } context.progress.notify_in_progress().await; let Some(graph_data) = result.graph_data else { debug!(project_id, branch = %branch, "indexing produced no graph data, skipping write"); return Ok(()); Loading Loading
crates/indexer/src/modules/code/indexing_pipeline.rs +6 −0 Original line number Diff line number Diff line Loading @@ -71,6 +71,8 @@ impl CodeIndexingPipeline { .repository_fetch_duration .record(fetch_start.elapsed().as_secs_f64(), &[]); context.progress.notify_in_progress().await; let extract_start = Instant::now(); archive::extract_tar_gz(&archive_bytes, temp_dir.path()) .map_err(|e| HandlerError::Processing(format!("failed to extract archive: {e}"))) Loading @@ -79,6 +81,8 @@ impl CodeIndexingPipeline { .repository_extract_duration .record(extract_start.elapsed().as_secs_f64(), &[]); context.progress.notify_in_progress().await; let indexed_at = Utc::now(); self.run_indexing( context, Loading Loading @@ -178,6 +182,8 @@ impl CodeIndexingPipeline { ); } context.progress.notify_in_progress().await; let Some(graph_data) = result.graph_data else { debug!(project_id, branch = %branch, "indexing produced no graph data, skipping write"); return Ok(()); Loading