remove useless todo

This commit is contained in:
Tamo 2022-10-17 17:14:44 +02:00 committed by Clément Renault
parent 9fe24fbff2
commit 655705eb2b
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4

View File

@ -507,15 +507,9 @@ impl IndexScheduler {
(bitmap.insert(task.uid));
})?;
match wtxn.commit() {
Ok(()) => (),
_e @ Err(_) => {
todo!("remove the data associated with the task");
// _e?;
}
}
wtxn.commit()?;
self.wake_up.signal();
Ok(task)
}