diff --git a/lib/remote/apilistener.cpp b/lib/remote/apilistener.cpp index 2f36075ab..747f709b7 100644 --- a/lib/remote/apilistener.cpp +++ b/lib/remote/apilistener.cpp @@ -749,8 +749,11 @@ void ApiListener::ReplayLog(const JsonRpcConnection::Ptr& client) { Endpoint::Ptr endpoint = client->GetEndpoint(); - if (endpoint->GetLogDuration() == 0) + if (endpoint->GetLogDuration() == 0) { + ObjectLock olock2(endpoint); + endpoint->SetSyncing(false); return; + } CONTEXT("Replaying log for Endpoint '" + endpoint->GetName() + "'");