fix: remove field.paths from err

This commit is contained in:
Mike Surowiec 2021-04-06 16:37:51 -07:00
Родитель 8998e52dc0
Коммит 57311c8c46
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -87,10 +87,8 @@ module.exports = class Hydro {
if (!res.ok && res.status !== 503) {
const err = new Error(`Hydro request failed: ${res.statusText}`)
err.status = res.status
err.path = fields.path
FailBot.report(err, {
path: fields.path,
hydroStatus: res.status,
hydroText: res.statusText
})