Anand Chowdhary

Results 218 comments of Anand Chowdhary

This is a good starting place: https://github.com/upptime/uptime-monitor/blob/master/src/helpers/notifications.ts Looking forward to the PR!

Aah my bad, thanks @TheEhsanSarshar!

Yep, it seems from your links that all `HEAD` requests are marked as down for some reason. I'll have a closer look soon to see why this is happening.

Aah, this is interesting. It turns out that the [HEAD](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/HEAD) verb only returns the response headers, not body. This is most likely why we get an error, because we expect...

Seems like the error is `Error: Transferred a partial file`. Now we need to see whether this is normal for all HEAD requests and catch it, or if it's a...

Using HEAD on https://www.google.com is not throwing an error. Maybe this is instead a problem with httpstatus.xyz? It seems like it's passing a content size header different from the actual...

I'd say it's best to stick to the expected `curl` behavior on this. By default, `curl` would throw an error if the content length is provided in HEAD and doesn't...

I think this line is causing the problem: https://github.com/momocow/semantic-release-gitmoji/commit/df9dd91e617a76a922528c3ce45719b74e004097#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519R60