mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-25 22:45:05 +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++;
|
retries++;
|
||||||
|
|
||||||
/* error sending; requeue? */
|
/* error sending; requeue? */
|
||||||
if (status == 404 || status == 410)
|
if (status == 404 || status == 410 || status < 0)
|
||||||
/* explicit error: discard */
|
/* explicit error: discard */
|
||||||
srv_log(xs_fmt("output message: fatal error %s %d", inbox, status));
|
srv_log(xs_fmt("output message: fatal error %s %d", inbox, status));
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue