We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43c0d41 commit 9172e02Copy full SHA for 9172e02
1 file changed
Framework/Core/src/DataProcessingDevice.cxx
@@ -434,6 +434,9 @@ bool DataProcessingDevice::ConditionalRun()
434
auto shouldNotWait = (mWasActive &&
435
(mDataProcessorContexes.at(0).state->streaming != StreamingState::Idle) && (mState.activeSignals.empty())) ||
436
(mDataProcessorContexes.at(0).state->streaming == StreamingState::EndOfStreaming);
437
+ if (NewStatePending()) {
438
+ shouldNotWait = true;
439
+ }
440
uv_run(mState.loop, shouldNotWait ? UV_RUN_NOWAIT : UV_RUN_ONCE);
441
}
442
0 commit comments