Skip to content

Commit 233aa95

Browse files
Zainullin DamirZainullin Damir
authored andcommitted
++
1 parent 8567a50 commit 233aa95

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

include/ipfixprobe/outputPlugin/outputStorage/backoffScheme.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ class BackoffScheme {
2121
if (m_waitCounter < m_shortWaitThreshold) {
2222
for (volatile const auto _ : std::views::iota(0, 10'000)) {}
2323
} else if (m_waitCounter < m_longWaitThreshold) {
24-
return false;
25-
std::this_thread::yield();
24+
// return false;
25+
// std::this_thread::yield();
2626
} else {
2727
return false;
2828
}

include/ipfixprobe/outputPlugin/outputStorage/outputStorage.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ class OutputStorage {
263263
m_readerGroupSizes.push_back(groupSize);
264264
m_readerGroupHandlers
265265
.emplace_back(groupSize, *this, m_readerGroupsCount, m_readersRegisteredGlobally);
266-
// const uint8_t readerGroupIndex = m_readerGroupsCount++;
266+
m_readerGroupsCount++;
267267
return m_readerGroupHandlers.back();
268268
}
269269

0 commit comments

Comments
 (0)