Commit an update only when it is Ok

This commit is contained in:
Clément Renault 2019-10-23 15:52:40 +02:00
parent 93306c2326
commit eb67195840
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4

View File

@ -35,8 +35,10 @@ fn update_awaiter(receiver: Receiver<()>, env: heed::Env, update_fn: Arc<ArcSwap
match update::update_task(&mut writer, index.clone()) {
Ok(Some(status)) => {
if let Err(e) = writer.commit() {
error!("update transaction failed: {}", e)
if status.result.is_ok() {
if let Err(e) = writer.commit() {
error!("update transaction failed: {}", e)
}
}
if let Some(ref callback) = *update_fn.load() {