We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c9815d commit 4556446Copy full SHA for 4556446
1 file changed
include/ipfixprobe/outputPlugin/outputStorage/mqOutputStorage.hpp
@@ -207,7 +207,8 @@ class MQOutputStorage : public OutputStorage<ElementType> {
207
208
bool allReadersFinished() const noexcept
209
{
210
- return m_stateBuffer.getCurrentValue().read > m_buffersSize;
+ // TODO changed to >= from >
211
+ return m_stateBuffer.getCurrentValue().read >= m_buffersSize;
212
}
213
214
std::atomic<bool> m_writerFinished {false};
0 commit comments