Events get dispatched to server even if processing them fails
MrLoh opened this issue · 0 comments
MrLoh commented
Because events get processed and recorded in parallel once they are on the event bus. They can get recorded on the server but fail processing and updating the state and thus not even being recorded locally. Either they should be recorded before they are processed and send to the server or they should only get send to the server after processing but that is tricky because events that don't come from the same device also need to be processed.