blob: 6c6b7cf69763fa8410585624bc4b15a577560a54 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
--- index-scheduler/src/batch.rs.orig 2025-12-16 13:02:05 UTC
+++ index-scheduler/src/batch.rs
@@ -628,6 +628,7 @@ impl IndexScheduler {
/// The list of tasks that were processed. The metadata of each task in the returned
/// list is updated accordingly, with the exception of the its date fields
/// [`finished_at`](meilisearch_types::tasks::Task::finished_at) and [`started_at`](meilisearch_types::tasks::Task::started_at).
+ #[allow(dependency_on_unit_never_type_fallback)]
#[tracing::instrument(level = "trace", skip(self, batch), target = "indexing::scheduler", fields(batch=batch.to_string()))]
pub(crate) fn process_batch(&self, batch: Batch) -> Result<Vec<Task>> {
#[cfg(test)]
|