We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84f2726 commit 8cecd0eCopy full SHA for 8cecd0e
src/routes/health.mjs
@@ -8,7 +8,7 @@ router.get("/", async function healthGet(req, res, next) {
8
const healthcheck = {
9
uptime: process.uptime(),
10
message: "OK",
11
- timestamp: Date()
+ timestamp: new Date().toString()
12
};
13
try {
14
res.send(healthcheck);
0 commit comments