Skip to content

Commit

Permalink
Merge branch 'main' into rafal/fix-resolving-catalyst-api-url
Browse files Browse the repository at this point in the history
  • Loading branch information
leszko authored Aug 19, 2024
2 parents 653ba94 + 0e69abb commit be5fc40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/healthcheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func (d *CatalystAPIHandlersCollection) Healthcheck() httprouter.Handle {
b = []byte(`{"status": "marshalling status failed"}`)
}

if _, err := io.WriteString(w, string(b)); err != nil {
if _, err := io.Writer.Write(w, b); err != nil {
log.LogNoRequestID("Failed to write HTTP response for " + req.URL.RawPath)
}
}
Expand Down

0 comments on commit be5fc40

Please sign in to comment.