Skip to content

Commit

Permalink
Fix from reviews.
Browse files Browse the repository at this point in the history
  • Loading branch information
fmassot committed Jul 4, 2023
1 parent 1eb79fd commit debfed6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions quickwit/quickwit-doc-mapper/src/default_doc_mapper/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ pub(crate) use self::field_mapping_entry::{
FieldMappingEntryForSerialization, IndexRecordOptionSchema, QuickwitTextTokenizer,
};
pub(crate) use self::field_mapping_type::FieldMappingType;
pub use self::tokenizer_entry::{
analyze_text, NgramTokenizerOption, RegexTokenizerOption, TokenFilterType, TokenizerConfig,
TokenizerEntry, TokenizerType,
pub use self::tokenizer_entry::{analyze_text, TokenizerConfig, TokenizerEntry};
pub(crate) use self::tokenizer_entry::{
NgramTokenizerOption, RegexTokenizerOption, TokenFilterType, TokenizerType,
};
use crate::QW_RESERVED_FIELD_NAMES;

Expand Down
2 changes: 1 addition & 1 deletion quickwit/quickwit-search/src/fetch_docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ async fn fetch_docs_in_split(
false,
)
.await
.with_context(|| "open-index-for-split")?;
.context("open-index-for-split")?;
let index_reader = index
.reader_builder()
// the docs are presorted so a cache size of NUM_CONCURRENT_REQUESTS is fine
Expand Down

0 comments on commit debfed6

Please sign in to comment.