Skip to content

Commit

Permalink
Increase status output delay to 7 secs
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Feb 16, 2024
1 parent 036c5af commit 4e43da6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/stressTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 4e43da6

Please sign in to comment.