rename the ComputingTheChanges to ComputingDocumentChanges

This commit is contained in:
Tamo 2024-12-11 18:08:45 +01:00
parent f1beb60204
commit 5d682b4700
No known key found for this signature in database
GPG Key ID: 20CD8020AFA88D69
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -139,7 +139,7 @@ make_enum_progress! {
make_enum_progress! {
pub enum DocumentOperationProgress {
RetrievingConfig,
ComputingTheChanges,
ComputingDocumentChanges,
Indexing,
}
}