diff options
| author | David Bremner <david@tethera.net> | 2016-11-27 23:01:42 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2016-12-07 07:00:40 -0400 |
| commit | d74c5345704136611f993ca38e0d035b1da798b6 (patch) | |
| tree | a9d5383e410994bb0261d704fe1a102f9639e1d7 /notmuch-insert.c | |
| parent | 9259b97fa2659ae6b6dbcd49b04db087e64036ad (diff) | |
cli/insert: return EX_TEMPFAIL for some errors
Attempt to distinguish between errors indicating misconfiguration or
programmer error, which we consider "permanent", in the sense that
automatic retries are unlikely to be useful, and those indicating
transient error conditions. We consider XAPIAN_EXCEPTION transient
because it covers the important special case of locking failure.
Diffstat (limited to 'notmuch-insert.c')
| -rw-r--r-- | notmuch-insert.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/notmuch-insert.c b/notmuch-insert.c index 862da889..bc96af0e 100644 --- a/notmuch-insert.c +++ b/notmuch-insert.c @@ -538,9 +538,10 @@ notmuch_insert_command (notmuch_config_t *config, int argc, char *argv[]) return EXIT_FAILURE; } - if (notmuch_database_open (notmuch_config_get_database_path (config), - NOTMUCH_DATABASE_MODE_READ_WRITE, ¬much)) - return EXIT_FAILURE; + status = notmuch_database_open (notmuch_config_get_database_path (config), + NOTMUCH_DATABASE_MODE_READ_WRITE, ¬much); + if (status) + return keep ? NOTMUCH_STATUS_SUCCESS : status_to_exit (status); notmuch_exit_if_unmatched_db_uuid (notmuch); @@ -577,5 +578,5 @@ notmuch_insert_command (notmuch_config_t *config, int argc, char *argv[]) notmuch_run_hook (db_path, "post-insert"); } - return status ? EXIT_FAILURE : EXIT_SUCCESS; + return status_to_exit (status); } |
