Implementing EventHandler leads to inconsistent behaviour
Hi, I would like to ask if anyone encountered similar issues regarding to EventsHandler, particularly Page Event Topic. We've added this on top of the EventHandler that we created:
@Component(service = EventHandler.class, immediate = true, configurationPolicy = ConfigurationPolicy.OPTIONAL, property = {
"event.topics=" + PageEvent.EVENT_TOPIC })
and added
@Override
public void handleEvent(Event event) {}
The issue here is that, the override handleEvent didn't seem to run even if we trigger a page modification or page creation event. What else we could check for this? Thanks!