fix: check ignored errors

This commit is contained in:
rramiachraf 2024-03-04 18:46:23 +01:00
parent a5bc03959e
commit dccfd17bcc
6 changed files with 32 additions and 15 deletions

View file

@ -85,9 +85,11 @@ func Annotations(l *logrus.Logger) http.HandlerFunc {
return
}
setCache(id, body)
_, err = w.Write(response)
if err != nil {
if err = setCache(id, body); err != nil {
l.Errorln(err)
}
if _, err = w.Write(response); err != nil {
l.Errorln("Error sending response: ", err)
}
}