remove useless prints

This commit is contained in:
Tamo 2024-11-20 12:27:12 +01:00
parent 56eacd221f
commit 7e379b3d14
No known key found for this signature in database
GPG key ID: 20CD8020AFA88D69
3 changed files with 0 additions and 10 deletions

View file

@ -948,7 +948,6 @@ impl IndexScheduler {
processing: &ProcessingTasks,
query: &Query,
) -> Result<RoaringBitmap> {
dbg!();
let mut batches = self.all_batch_ids(rtxn)?;
if let Some(batch_id) = processing.batch.as_ref().map(|batch| batch.uid) {
batches.insert(batch_id);
@ -4160,7 +4159,6 @@ mod tests {
tasks: [0, 1, 2, 3].into_iter().collect(),
};
let task_cancelation = index_scheduler.register(kind, None, false).unwrap();
println!("HEEERE");
handle.advance_n_successful_batches(1);
snapshot!(snapshot_index_scheduler(&index_scheduler), name: "start");