I’m trying to start projections internally for the embeddable EventStore using the node’s bus, e.g.
ClusterVNode node = CreateNode();
node.MainQueue.Publish(new ProjectionManagementMessage.Command.Enable(
new NoopEnvelope(),
ProjectionNamesBuilder.StandardProjections.StreamsStandardProjection,
ProjectionManagementMessage.RunAs.System));
but I don’t think it’s working. Looking at the codebase, it looks like the ProjectionComponent’s bus does not receive messages from the mainbus. How can I work around this?