reduced profile persist interval

This commit is contained in:
orignal
2025-03-06 16:29:14 -05:00
parent 66a52a17c6
commit fe3e7b1f6e
2 changed files with 2 additions and 2 deletions

View File

@@ -310,7 +310,7 @@ namespace data
{
if (it->second->IsUpdated () && ts > it->second->GetLastPersistTime () + PEER_PROFILE_PERSIST_INTERVAL)
{
tmp.push_back (std::make_pair (it->first, it->second));
tmp.push_back (*it);
it->second->SetLastPersistTime (ts);
it->second->SetUpdated (false);
}