diff --git a/services/healthcheck.js b/services/healthcheck.js index f9540ad0..a5c96a79 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...`); -/* Starts quick HTTP server, attempts to send GET to app, then exists with appropriate exit code */ +/* Creates an HTTP client, attempts 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;