We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63f9a00 commit 952b26bCopy full SHA for 952b26b
1 file changed
tests/performance/outputStorage/dummyReader.hpp
@@ -30,7 +30,7 @@ class DummyReader {
30
= m_readerGroupHandler.getReaderHandler();
31
while (!readHandler.finished()) {
32
while (readHandler.getFlowRecord() != nullptr) {
33
- if (printCounter++ % (1ULL << 17) == 0) {
+ if (printCounter++ % (1ULL << 23) == 0) {
34
const std::string message = "Reader "
35
+ std::to_string(readHandler.getReaderIndex()) + " read "
36
+ std::to_string(readHandler.readContainers()) + " containers so far.";
0 commit comments