mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-25 14:35:04 +00:00
More strict retries.
This commit is contained in:
parent
203dd88389
commit
fff4ff4261
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue