mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-26 16:21:07 +00:00
Adjust + Cleanup changes.
Indeed, I missed some of the changed that were introduced by #3190.
This commit is contained in:
@ -210,15 +210,11 @@ impl V5IndexReader {
|
||||
|
||||
if *task.index_uid().unwrap_or_default().to_string() == name {
|
||||
if updated_at.is_none() {
|
||||
updated_at = task.updated_at()
|
||||
}
|
||||
|
||||
if created_at.is_none() {
|
||||
created_at = task.created_at()
|
||||
updated_at = task.processed_at()
|
||||
}
|
||||
|
||||
if task.id as usize == index_metadata.creation_task_id {
|
||||
created_at = task.processed_at();
|
||||
created_at = task.created_at();
|
||||
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user