all repos — honk @ 51f439f1fae7360cbda94444295ad1117a978df7

my fork of honk

for correctness, 422 should be delivery success as well
Ted Unangst tedu@tedunangst.com
Tue, 19 Dec 2023 18:03:35 -0500
commit

51f439f1fae7360cbda94444295ad1117a978df7

parent

a615b9b14a5b5ab64cc9b478fda7acb970790974

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M deliverator.godeliverator.go

@@ -74,6 +74,9 @@ str := err.Error()

if strings.Contains(str, "http post status: 400") { return true } + if strings.Contains(str, "http post status: 422") { + return true + } return false }