[traffic] Fix assignment

Signed-off-by: mvglasow <michael -at- vonglasow.com>
This commit is contained in:
mvglasow
2025-07-24 21:32:02 +03:00
parent 61b15d623d
commit 2729d07732

View File

@@ -675,7 +675,7 @@ void TrafficManager::ThreadRoutine()
{
if (steady_clock::now() - lastPurged >= kPurgeInterval)
{
lastPurged == steady_clock::now();
lastPurged = steady_clock::now();
hasUpdates |= PurgeExpiredMessagesImpl();
}