summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2025-01-13 06:17:30 +0100
committerGravatar default2025-01-13 06:17:30 +0100
commita016045a8fb80e4accad618c60b987bad708f45e (patch)
treea801439a06030bd9e5ca7c3fda56294c391b9287
parentMinor improvements to start / end event time showing. (diff)
downloadpenes-snac2-a016045a8fb80e4accad618c60b987bad708f45e.tar.gz
penes-snac2-a016045a8fb80e4accad618c60b987bad708f45e.tar.xz
penes-snac2-a016045a8fb80e4accad618c60b987bad708f45e.zip
Don't describe as 'fatal' what are just non-retriable connection errors.
-rw-r--r--activitypub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c
index 862f943..f0d9336 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -2706,7 +2706,7 @@ void process_queue_item(xs_dict *q_item)
2706 || status == HTTP_STATUS_UNPROCESSABLE_CONTENT 2706 || status == HTTP_STATUS_UNPROCESSABLE_CONTENT
2707 || status < 0) 2707 || status < 0)
2708 /* explicit error: discard */ 2708 /* explicit error: discard */
2709 srv_log(xs_fmt("output message: fatal error %s %d", inbox, status)); 2709 srv_log(xs_fmt("output message: error %s %d", inbox, status));
2710 else 2710 else
2711 if (retries > queue_retry_max) 2711 if (retries > queue_retry_max)
2712 srv_log(xs_fmt("output message: giving up %s %d", inbox, status)); 2712 srv_log(xs_fmt("output message: giving up %s %d", inbox, status));