From 4e43da60c4f6cdec008b6651032dccb6ccf6297b Mon Sep 17 00:00:00 2001 From: kimwalisch Date: Fri, 16 Feb 2024 11:12:19 +0100 Subject: [PATCH] Increase status output delay to 7 secs --- src/app/stressTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/stressTest.cpp b/src/app/stressTest.cpp index fd00f1fb9..9524462db 100644 --- a/src/app/stressTest.cpp +++ b/src/app/stressTest.cpp @@ -363,7 +363,7 @@ void stressTest(const CmdOptions& opts) if (secsStatus.count() >= statusOutputDelay) { lastStatusOutput = t2; - statusOutputDelay += 5; + statusOutputDelay += 7; statusOutputDelay = std::min(statusOutputDelay, 600); printResult(threadId, threads, i, count, secsThread, primeCounts); }