We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db0b39f commit 5376980Copy full SHA for 5376980
src/loaders/micro-agent.js
@@ -64,7 +64,7 @@ export class MicroAgent extends MicroAgentBase {
64
return lazyFeatureLoader(f, 'aggregate')
65
}).then(({ Aggregate }) => {
66
this.features[f] = new Aggregate(this)
67
- this.runtime.harvester.initializedAggregates.push(f) // so that harvester will poll this feature agg on interval
+ this.runtime.harvester.initializedAggregates.push(this.features[f]) // so that harvester will poll this feature agg on interval
68
}).catch(err => warn(25, err))
69
}
70
})
0 commit comments