From 5d11c58ac40b433bba31121e8b0db12c3aaee720 Mon Sep 17 00:00:00 2001 From: Thomas Dissert Date: Fri, 28 Oct 2022 09:55:54 +0200 Subject: [PATCH] fixed the comment a bit more --- services/healthcheck.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/healthcheck.js b/services/healthcheck.js index a5c96a79..503267f3 100644 --- a/services/healthcheck.js +++ b/services/healthcheck.js @@ -17,7 +17,7 @@ const startTime = new Date(); // Initialize timestamp to calculate time taken console.log(`[${startTime}] Running health check...`); -/* Creates an HTTP client, attempts to send GET to app, then exits with appropriate exit code */ +/* Creates an HTTP Request to attempt to send GET to app, then exits with appropriate exit code */ const healthCheck = http.request(requestOptions, (response) => { const totalTime = (new Date() - startTime) / 1000; const status = response.statusCode;