Update heed to 0.10.0

This commit is contained in:
Clément Renault 2020-10-30 11:42:00 +01:00
parent a30206a665
commit 085d3b9d94
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
10 changed files with 47 additions and 18 deletions

View file

@ -292,7 +292,7 @@ pub fn run(opt: Opt) -> anyhow::Result<()> {
.len() as usize;
// And the number of documents in the database.
let rtxn = index_cloned.clone().read_txn().unwrap();
let rtxn = index_cloned.read_txn().unwrap();
let docs_count = index_cloned.clone().number_of_documents(&rtxn).unwrap() as usize;
IndexTemplate { db_name: db_name_cloned.clone(), db_size, docs_count }
@ -330,7 +330,7 @@ pub fn run(opt: Opt) -> anyhow::Result<()> {
.len() as usize;
// And the number of documents in the database.
let rtxn = index_cloned.clone().read_txn().unwrap();
let rtxn = index_cloned.read_txn().unwrap();
let docs_count = index_cloned.clone().number_of_documents(&rtxn).unwrap() as usize;
let template = UpdatesTemplate {