mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-26 00:01:00 +00:00
Prefer using an u64 instead of a usize in some places
This commit is contained in:
committed by
Clément Renault
parent
79c4275bfc
commit
3cbfacb616
@ -405,12 +405,12 @@ pub enum Details {
|
||||
},
|
||||
TaskCancelation {
|
||||
matched_tasks: u64,
|
||||
canceled_tasks: Option<usize>,
|
||||
canceled_tasks: Option<u64>,
|
||||
original_query: String,
|
||||
},
|
||||
TaskDeletion {
|
||||
matched_tasks: u64,
|
||||
deleted_tasks: Option<usize>,
|
||||
deleted_tasks: Option<u64>,
|
||||
original_query: String,
|
||||
},
|
||||
Dump {
|
||||
|
Reference in New Issue
Block a user