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)