Skip to content

Commit 0314490

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

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

include/ipfixprobe/outputPlugin/outputStorage/backoffScheme.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ 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+
std::this_thread::yield();
2625
} else {
2726
return false;
2827
}

0 commit comments

Comments
 (0)