Replace batch stop reason when deleting index

This commit is contained in:
Louis Dureuil 2025-04-03 10:33:59 +02:00
parent bd172bf68a
commit 1cca4abf5a
No known key found for this signature in database

View File

@ -164,7 +164,7 @@ impl BatchKind {
K::IndexDeletion => ( K::IndexDeletion => (
Break(( Break((
BatchKind::IndexDeletion { ids: vec![task_id] }, BatchKind::IndexDeletion { ids: vec![task_id] },
BatchStopReason::TaskCannotBeBatched { kind, id: task_id }, BatchStopReason::IndexDeletion { id: task_id },
)), )),
false, false,
), ),