From 1ddcdf38ca15e149ca4934f24b8fdf0337d1bbcf Mon Sep 17 00:00:00 2001 From: Brian Gough Date: Fri, 27 Nov 2020 14:42:42 +0000 Subject: [PATCH] add comment about health checks on '/' --- services/real-time/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/services/real-time/app.js b/services/real-time/app.js index 7d7d85c83f..e65561cf43 100644 --- a/services/real-time/app.js +++ b/services/real-time/app.js @@ -78,6 +78,7 @@ io.configure(function () { ]) }) +// a 200 response on '/' is required for load balancer health checks app.get('/', (req, res) => res.send('real-time-sharelatex is alive')) app.get('/status', function (req, res) {