From fec900ff63b77d565d5444136fa163303cc42ac1 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Fri, 15 Jan 2021 11:15:28 +0100 Subject: [PATCH] Increase the sf_stream output frequency to 10 seconds --- sf-stream/include/stream_config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sf-stream/include/stream_config.hpp b/sf-stream/include/stream_config.hpp index 4e4eec4..8f8b977 100644 --- a/sf-stream/include/stream_config.hpp +++ b/sf-stream/include/stream_config.hpp @@ -16,5 +16,5 @@ namespace stream_config const int SYNC_RETRY_LIMIT = 3; // Number of pulses between each statistics print out. - const size_t STREAM_STATS_MODULO = 10000; + const size_t STREAM_STATS_MODULO = 1000; }