diff options
author | default <nobody@localhost> | 2023-08-09 20:04:57 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-08-09 20:04:57 +0200 |
commit | fff4ff426126ff37b39b588ed05936b5be77f849 (patch) | |
tree | 25cff1c02ab3afe5c92ec6ce1f6435c0bf9d0f37 /activitypub.c | |
parent | 203dd883896c015429a60deaa16726af2402706f (diff) |
More strict retries.
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 6c8c484..d6110cc 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1851,7 +1851,7 @@ void process_queue_item(xs_dict *q_item) retries++; /* error sending; requeue? */ - if (status == 404 || status == 410) + if (status == 404 || status == 410 || status < 0) /* explicit error: discard */ srv_log(xs_fmt("output message: fatal error %s %d", inbox, status)); else |