mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-27 00:31:02 +00:00
bring back the IndexMeta and IndexStats in meilisearch-http
This commit is contained in:
@ -82,6 +82,13 @@ impl Query {
|
||||
..self
|
||||
}
|
||||
}
|
||||
|
||||
pub fn with_limit(self, limit: u32) -> Self {
|
||||
Self {
|
||||
limit,
|
||||
..self
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub mod db_name {
|
||||
@ -197,7 +204,6 @@ impl IndexScheduler {
|
||||
};
|
||||
|
||||
std::thread::spawn(move || loop {
|
||||
println!("started running");
|
||||
run.wake_up.wait();
|
||||
|
||||
match run.tick() {
|
||||
|
Reference in New Issue
Block a user