create stream based upon $by_event_type

Hi all,

I am trying to following the principles from the following post, but running into issues:

http://geteventstore.com/blog/20130210/the-cost-of-creating-a-stream/

I have setup a projection and have it running:

fromStreams("$et-FakeEvent1", “$et-FakeEvent2”)
.whenAny(function(s,e) {

linkTo("fakeStream", e);

});

The $et-FakeEvent1 and $et-FakeEvent1 streams are created by the $by_event_type (which is enabled and running)

I would expect a new stream called “fakeStream” to be created, but it isn’t…

Any ideas?

Thanks

Do you see by_event_type projection has processed any events? What is its position? What is a position of your projection? Do you see any events in $et-Fake1 stream?