From 7f07a3f0edd225a2d07086251d60d87d41c87ef5 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Wed, 5 Oct 2016 08:34:33 -0300 Subject: [PATCH] lib: replace deprecated xapian call 'flush()' with 'commit()' This will make notmuch incompatible with Xapian before 1.1.0, which is more than 6 years old this point. --- lib/database.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/database.cc b/lib/database.cc index f0bfe566..2d19f20c 100644 --- a/lib/database.cc +++ b/lib/database.cc @@ -1711,7 +1711,7 @@ notmuch_database_end_atomic (notmuch_database_t *notmuch) * However, we rely on flushing to test atomicity. */ const char *thresh = getenv ("XAPIAN_FLUSH_THRESHOLD"); if (thresh && atoi (thresh) == 1) - db->flush (); + db->commit (); } catch (const Xapian::Error &error) { _notmuch_database_log (notmuch, "A Xapian exception occurred committing transaction: %s.\n", error.get_msg().c_str()); -- 2.43.0