Fix: Frequent Subscriptions problem that make Excessive CPU usage.

Thanks to mfshiu ! Closes #1096, Closes wekan/wekan-mongodb#2
This commit is contained in:
Lauri Ojansivu 2017-11-29 11:23:49 +02:00
parent c609096700
commit 7e4b42e9b3
3 changed files with 11 additions and 7 deletions

View file

@ -1,6 +1,13 @@
const subManager = new SubsManager();
BlazeComponent.extendComponent({
onCreated() {
// Here is the only place that boards data needed, all boards data will stop sync when leaving this template.
Meteor.subscribe('boards');
Meteor.subscribe('setting');
Meteor.subscribe('user-admin');
},
boards() {
return Boards.find({
archived: false,