mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-22 18:17:39 +08:00
Merge #3842
3842: fix some typos r=dureuill a=cuishuang # Pull Request ## Related issue Fixes #<issue_number> ## What does this PR do? - fix some typos ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)? - [x] Have you read the contributing guidelines? - [x] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to Meilisearch! Co-authored-by: cui fliter <imcusg@gmail.com>
This commit is contained in:
commit
040b5a5b6f
@ -160,7 +160,7 @@ impl BatchKind {
|
|||||||
impl BatchKind {
|
impl BatchKind {
|
||||||
/// Returns a `ControlFlow::Break` if you must stop right now.
|
/// Returns a `ControlFlow::Break` if you must stop right now.
|
||||||
/// The boolean tell you if an index has been created by the batched task.
|
/// The boolean tell you if an index has been created by the batched task.
|
||||||
/// To ease the writting of the code. `true` can be returned when you don't need to create an index
|
/// To ease the writing of the code. `true` can be returned when you don't need to create an index
|
||||||
/// but false can't be returned if you needs to create an index.
|
/// but false can't be returned if you needs to create an index.
|
||||||
// TODO use an AutoBatchKind as input
|
// TODO use an AutoBatchKind as input
|
||||||
pub fn new(
|
pub fn new(
|
||||||
@ -214,7 +214,7 @@ impl BatchKind {
|
|||||||
|
|
||||||
/// Returns a `ControlFlow::Break` if you must stop right now.
|
/// Returns a `ControlFlow::Break` if you must stop right now.
|
||||||
/// The boolean tell you if an index has been created by the batched task.
|
/// The boolean tell you if an index has been created by the batched task.
|
||||||
/// To ease the writting of the code. `true` can be returned when you don't need to create an index
|
/// To ease the writing of the code. `true` can be returned when you don't need to create an index
|
||||||
/// but false can't be returned if you needs to create an index.
|
/// but false can't be returned if you needs to create an index.
|
||||||
#[rustfmt::skip]
|
#[rustfmt::skip]
|
||||||
fn accumulate(self, id: TaskId, kind: AutobatchKind, index_already_exists: bool, primary_key: Option<&str>) -> ControlFlow<BatchKind, BatchKind> {
|
fn accumulate(self, id: TaskId, kind: AutobatchKind, index_already_exists: bool, primary_key: Option<&str>) -> ControlFlow<BatchKind, BatchKind> {
|
||||||
|
@ -998,7 +998,7 @@ impl IndexScheduler {
|
|||||||
}()
|
}()
|
||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
|
|
||||||
// The write transaction is directly owned and commited inside.
|
// The write transaction is directly owned and committed inside.
|
||||||
match self.index_mapper.delete_index(wtxn, &index_uid) {
|
match self.index_mapper.delete_index(wtxn, &index_uid) {
|
||||||
Ok(()) => (),
|
Ok(()) => (),
|
||||||
Err(Error::IndexNotFound(_)) if index_has_been_created => (),
|
Err(Error::IndexNotFound(_)) if index_has_been_created => (),
|
||||||
|
@ -1785,7 +1785,7 @@ mod tests {
|
|||||||
assert_eq!(task.kind.as_kind(), k);
|
assert_eq!(task.kind.as_kind(), k);
|
||||||
}
|
}
|
||||||
|
|
||||||
snapshot!(snapshot_index_scheduler(&index_scheduler), name: "everything_is_succesfully_registered");
|
snapshot!(snapshot_index_scheduler(&index_scheduler), name: "everything_is_successfully_registered");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
@ -2,7 +2,7 @@ use std::sync::Arc;
|
|||||||
|
|
||||||
use memmap2::Mmap;
|
use memmap2::Mmap;
|
||||||
|
|
||||||
/// Wrapper around Mmap allowing to virtualy clone grenad-chunks
|
/// Wrapper around Mmap allowing to virtually clone grenad-chunks
|
||||||
/// in a parallel process like the indexing.
|
/// in a parallel process like the indexing.
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct ClonableMmap {
|
pub struct ClonableMmap {
|
||||||
|
Loading…
Reference in New Issue
Block a user