diff options
| author | 2024-01-10 18:04:44 +0100 | |
|---|---|---|
| committer | 2024-01-10 18:04:44 +0100 | |
| commit | f0d185192ba4c64646ac9c1507798707af03c898 (patch) | |
| tree | 86a892cd0ea1f0f1225f6bb8afb8009ae6d5590f | |
| parent | Version 2.44 RELEASED. (diff) | |
| download | snac2-f0d185192ba4c64646ac9c1507798707af03c898.tar.gz snac2-f0d185192ba4c64646ac9c1507798707af03c898.tar.xz snac2-f0d185192ba4c64646ac9c1507798707af03c898.zip | |
Call srv_archive_error() on input q_item errors.
| -rw-r--r-- | activitypub.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c index 35601fb..be82fff 100644 --- a/activitypub.c +++ b/activitypub.c | |||
| @@ -1946,6 +1946,8 @@ void process_user_queue_item(snac *snac, xs_dict *q_item) | |||
| 1946 | return; | 1946 | return; |
| 1947 | 1947 | ||
| 1948 | if (!process_input_message(snac, msg, req)) { | 1948 | if (!process_input_message(snac, msg, req)) { |
| 1949 | srv_archive_error("input", "process_input_message", req, msg); | ||
| 1950 | |||
| 1949 | if (retries > queue_retry_max) | 1951 | if (retries > queue_retry_max) |
| 1950 | snac_log(snac, xs_fmt("input giving up")); | 1952 | snac_log(snac, xs_fmt("input giving up")); |
| 1951 | else { | 1953 | else { |