diff --git a/crates/index-scheduler/src/batch.rs b/crates/index-scheduler/src/batch.rs index d05af31c3..9ad43f192 100644 --- a/crates/index-scheduler/src/batch.rs +++ b/crates/index-scheduler/src/batch.rs @@ -1359,7 +1359,7 @@ impl IndexScheduler { } }; - progress.update_progress(DocumentOperationProgress::ComputingTheChanges); + progress.update_progress(DocumentOperationProgress::ComputingDocumentChanges); let (document_changes, operation_stats, primary_key) = indexer .into_changes( &indexer_alloc, diff --git a/crates/index-scheduler/src/processing.rs b/crates/index-scheduler/src/processing.rs index 5212433ef..89bec97e9 100644 --- a/crates/index-scheduler/src/processing.rs +++ b/crates/index-scheduler/src/processing.rs @@ -139,7 +139,7 @@ make_enum_progress! { make_enum_progress! { pub enum DocumentOperationProgress { RetrievingConfig, - ComputingTheChanges, + ComputingDocumentChanges, Indexing, } }