Hide Forgot
Description of problem: The default nodejs app's server.js contains this route def: self.routes['/health'] = function(req, res) { res.send('1'); }; but it's being handled at the proxy so isn't routed to the app's /health handler. We should remove it as it's confusing for users to try to modify the return value but it's not being reflected on http://$app_url/health Note that both nodejs-0.6 and nodejs-0.10 contains the same so if we remove/modify this, we need to do so on both cartridge versions.
Commit pushed to master at https://github.com/openshift/origin-server https://github.com/openshift/origin-server/commit/008a0d5b24c2de63a369a1e282447a1e3ce40bf3 Bug 1010435 - /health provided by proxy
test on devnev_3816, test with both nodejs-0.6 and nodejs-0.10 app, return "1" when visit the /health page. move the bug to verified