From 9ee4c905485d4fd5aef5ba95f73740a2520ea630 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 5 Sep 2014 14:04:42 -0400 Subject: [PATCH] test route back to 404 --- src/routes/debug.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }); };