Hi,
Sorry for the newbie question but i am starting with EventStore and i am unable to run the simplest projection.
I edit it and save … and it gets to the state Stopped (Enabled) then i try to “start” it but nothing happens.
However when i go to debug mode it seems to work
This is my projection
fromStream(“06141411007344003”)
.when({
$init: function () {
return { count1: 0 }; // initial state
},
myEventType: function(s, e) {
s.count1 += 1;
return s;
},
});
it is “emit enabled” and continous and it’s name is counter21
Stream 06141411007344003 already exists with several events of type myEventType already loaded.
However i never see the “Running” state on the projecction, and accesing to it through browsing http://127.0.0.1:2113/projection/counter21/s returns 404
Do you see anything wrong? … i am trying to follow the examples in documentation
Thanks in advance
R.B.C.