Skip to content

Commit

Permalink
fixed the comment a bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaswienecke authored Oct 28, 2022
1 parent b658d94 commit 5d11c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/healthcheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5d11c58

Please sign in to comment.