November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
I am not sure but I think the content events are only local - they are not raised on remote instances like cache invalidation
Hi Stepan
Maybe you're not moving the page.
From memory, moved event will only be triggered if you change current parent's parent including moved to wastebasket. The event will not get fired for the children of the page being moved.
I can confirm the content events are local. If you want to raise/listen to them remotely, you will need something like this episerver/content-events-masstransit (github.com)
We have a singleton service which subscribes to
PublishedContent
andMovedContent
fromIContentEvents
. And this works as expected locally, when the CMS is running in a single IIS application. When the app is deployed in multiple load balanced IIS applications, we use EPiServer.Azure, which works as expected for propagating changes from CMS like publishing of new pages to every instance. But we are not getting any published or moved content events in the singleton service in this envirnoment.example from Startup.cs
from MyService.cs