diff options
| author | default <nobody@localhost> | 2025-01-13 06:17:30 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2025-01-13 06:17:30 +0100 |
| commit | a016045a8fb80e4accad618c60b987bad708f45e (patch) | |
| tree | a801439a06030bd9e5ca7c3fda56294c391b9287 | |
| parent | ddc8781b3a93d77836b61f3efa884b3c23a1fd35 (diff) | |
Don't describe as 'fatal' what are just non-retriable connection errors.
| -rw-r--r-- | activitypub.c | 2 |
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) || status == HTTP_STATUS_UNPROCESSABLE_CONTENT || status < 0) /* explicit error: discard */ - srv_log(xs_fmt("output message: fatal error %s %d", inbox, status)); + srv_log(xs_fmt("output message: error %s %d", inbox, status)); else if (retries > queue_retry_max) srv_log(xs_fmt("output message: giving up %s %d", inbox, status)); |