Skip to content

Commit 5376980

Browse files
committed
Fix micro-agent initialization
1 parent db0b39f commit 5376980

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/loaders/micro-agent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export class MicroAgent extends MicroAgentBase {
6464
return lazyFeatureLoader(f, 'aggregate')
6565
}).then(({ Aggregate }) => {
6666
this.features[f] = new Aggregate(this)
67-
this.runtime.harvester.initializedAggregates.push(f) // so that harvester will poll this feature agg on interval
67+
this.runtime.harvester.initializedAggregates.push(this.features[f]) // so that harvester will poll this feature agg on interval
6868
}).catch(err => warn(25, err))
6969
}
7070
})

0 commit comments

Comments
 (0)