We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31efa38 commit 5fce160Copy full SHA for 5fce160
src/Dataflow/Engine/Scheduler/ExecutionStrategy.cc
@@ -123,6 +123,9 @@ void ExecutionQueueManager::executeImpl(ExecutionContextHandle ctx)
123
124
void ExecutionQueueManager::stop()
125
{
126
- executionLaunchThread_->interrupt();
127
- executionLaunchThread_.reset();
128
-}
+ if (executionLaunchThread_)
+ {
+ executionLaunchThread_->interrupt();
129
+ executionLaunchThread_.reset();
130
+ }
131
+}
0 commit comments