Ensure that runtime created objects are synced on (re)connect

refs #11684
This commit is contained in:
Michael Friedrich 2016-11-10 20:00:00 +01:00
parent 2e2de7c340
commit 4b86f69c96
1 changed files with 0 additions and 4 deletions

View File

@ -417,10 +417,6 @@ void ApiListener::SendRuntimeConfigObjects(const JsonRpcConnection::Ptr& aclient
continue;
for (const ConfigObject::Ptr& object : dtype->GetObjects()) {
/* don't sync objects with an older version time than the endpoint's log position */
if (object->GetVersion() < endpoint->GetLocalLogPosition())
continue;
/* don't sync objects for non-matching parent-child zones */
if (!azone->CanAccessObject(object))
continue;