Skip to content

Commit

Permalink
Don't init suggestion cache for abouts during startup
Browse files Browse the repository at this point in the history
  • Loading branch information
arj03 committed Sep 5, 2018
1 parent f44e28d commit ccbf46c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/sync/initialise/suggestionCaches.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ exports.create = function (api) {
return nest('app.sync.initialise', init)

function init () {
api.about.async.suggest()
// lazy load abouts on first use, can be quite heavy during startup
//api.about.async.suggest()
api.channel.async.suggest()
}
}

0 comments on commit ccbf46c

Please sign in to comment.