diff --git a/src/common/kiwix/xapianIndexer.cpp b/src/common/kiwix/xapianIndexer.cpp index e5700e1cd..64609b4a4 100644 --- a/src/common/kiwix/xapianIndexer.cpp +++ b/src/common/kiwix/xapianIndexer.cpp @@ -92,6 +92,8 @@ namespace kiwix { void XapianIndexer::indexingPostlude() { this->flush(); this->writableDatabase.commit_transaction(); - this->writableDatabase.commit(); + + // commit is not available is old version of xapian and seems not mandatory there + // this->writableDatabase.commit(); } }