From 57311c8c46ce42c40b76f1440c5adee1019abcc0 Mon Sep 17 00:00:00 2001 From: Mike Surowiec Date: Tue, 6 Apr 2021 16:37:51 -0700 Subject: [PATCH] fix: remove field.paths from err --- lib/hydro.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/hydro.js b/lib/hydro.js index e51f25c2ab..98ddb565fb 100644 --- a/lib/hydro.js +++ b/lib/hydro.js @@ -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 })