mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
Replace Index::new_with_creation_dates(...) with Index::new(...)
This commit is contained in:
parent
5a0a0468df
commit
4e175ae882
@ -71,10 +71,13 @@ impl IndexMapper {
|
||||
options.map_size(clamp_to_page_size(self.index_size));
|
||||
options.max_readers(1024);
|
||||
|
||||
if date == None {
|
||||
Ok(Index::new(options, path)?)
|
||||
} else {
|
||||
let (created, updated) = date.unwrap();
|
||||
|
||||
Ok(Index::new_with_creation_dates(options, path, created, updated)?)
|
||||
}
|
||||
}
|
||||
|
||||
/// Get or create the index.
|
||||
pub fn create_index(&self, mut wtxn: RwTxn, name: &str, date: Option<(time::OffsetDateTime, time::OffsetDateTime)>) -> Result<Index> {
|
||||
|
Loading…
Reference in New Issue
Block a user