Re: Replecator problem
Community, I have solve this issue by restarting replicator after getting update callback with id=0
void MyApp::ReplicatorUpdated(ulong64 id, ulong64 mask)
{
if (id == 0) {
replicator->Stop();
replicator->Start();
}
}