diff --git a/src/routes/debug.js b/src/routes/debug.js index 4cac674955..584a70a6b6 100644 --- a/src/routes/debug.js +++ b/src/routes/debug.js @@ -56,6 +56,6 @@ module.exports = function(app, middleware, controllers) { }); router.get('/test', function(req, res) { - process.exit(0); + res.redirect(404); }); };