From 4b86f69c969a29b0f237f898d83a50e785f86cce Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Thu, 10 Nov 2016 20:00:00 +0100 Subject: [PATCH] Ensure that runtime created objects are synced on (re)connect refs #11684 --- lib/remote/apilistener-configsync.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/remote/apilistener-configsync.cpp b/lib/remote/apilistener-configsync.cpp index 34c7d3e1e44..0f8ba9c9396 100644 --- a/lib/remote/apilistener-configsync.cpp +++ b/lib/remote/apilistener-configsync.cpp @@ -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;