From a7c6638a2179cb8bd50a8cac214389c5c2856638 Mon Sep 17 00:00:00 2001 From: Riku Rouvila Date: Thu, 5 Feb 2015 11:37:26 +0200 Subject: [PATCH] update feeds more often --- routes/feeds.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/feeds.js b/routes/feeds.js index 05e7e0f..4cf82f2 100644 --- a/routes/feeds.js +++ b/routes/feeds.js @@ -10,7 +10,7 @@ module.exports = function (app) { * GET /feeds * Endpoint for fetching different information feeds (Twitter, GitHub etc.) */ - app.get('/feeds', cache('3 hours'), function(req, res, next) { + app.get('/feeds', cache('10 minutes'), function(req, res, next) { Promise.props({ twitter: twitter.getTweets(20), github: github.getEvents(20)