mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Consider error status 400 as fatal in output messages.
This commit is contained in:
parent
57c84d1c3a
commit
4e87a1106a
1 changed files with 1 additions and 1 deletions
|
@ -1901,7 +1901,7 @@ void process_queue_item(xs_dict *q_item)
|
|||
retries++;
|
||||
|
||||
/* error sending; requeue? */
|
||||
if (status == 404 || status == 410 || status < 0)
|
||||
if (status == 400 || 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