diff --git a/src/pages/api/ping.js b/src/pages/api/ping.js index 46ffda65..8c919f0a 100644 --- a/src/pages/api/ping.js +++ b/src/pages/api/ping.js @@ -13,7 +13,9 @@ export default async function handler(req, res) { }); } - const [status] = await httpProxy(pingURL); + const [status] = await httpProxy(pingURL, { + method: "HEAD" + }); return res.status(200).json({ status,