summaryrefslogtreecommitdiff
path: root/textproc/meilisearch/files/patch-rust-1.92.0
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/meilisearch/files/patch-rust-1.92.0')
-rw-r--r--textproc/meilisearch/files/patch-rust-1.92.010
1 files changed, 10 insertions, 0 deletions
diff --git a/textproc/meilisearch/files/patch-rust-1.92.0 b/textproc/meilisearch/files/patch-rust-1.92.0
new file mode 100644
index 000000000000..6c6b7cf69763
--- /dev/null
+++ b/textproc/meilisearch/files/patch-rust-1.92.0
@@ -0,0 +1,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)]