From 2d3e7ee79656064a4fdcb5f9f59c9d47fe1eade5 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 18 Jun 2019 00:54:58 +0200 Subject: [PATCH] More aggressive broadcast repeat timeout. --- profiler/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index efa595cd..e1bdd19f 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -319,7 +319,7 @@ int main( int argc, char** argv ) while( it != clients.end() ) { const auto diff = t - it->second.time; - if( diff > 6000 ) // 6s + if( diff > 4000 ) // 4s { it = clients.erase( it ); }