Skip to content

Commit

Permalink
fix debug health
Browse files Browse the repository at this point in the history
  • Loading branch information
arunaruljothi committed Mar 6, 2023
1 parent 498f3d8 commit e73939b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const server: Server = createServer((req: IncomingMessage, res: ServerResponse)
const healthPort = (parseInt(port) + 1).toString()
const healthServer: Server = createServer((req: IncomingMessage, res: ServerResponse) => {
res.writeHead(200)
res.write("BAD")
res.write("OK")
res.end()
})

Expand Down

0 comments on commit e73939b

Please sign in to comment.