Refresh placefiles as often as every 1 second

This commit is contained in:
Dan Paulat 2024-10-05 04:11:28 -05:00
parent 06a2a18c06
commit 621cbb3d51

View file

@ -348,8 +348,8 @@ PlacefileManager::Impl::PlacefileRecord::refresh_time() const
if (refresh_enabled())
{
// Don't refresh more often than every 15 seconds
return std::max(placefile_->refresh(), 15s);
// Don't refresh more often than every 1 second
return std::max(placefile_->refresh(), 1s);
}
return -1s;