You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//see registerOwnedObject( AdapterManager ) above, we register adapter managers with root. At this point we dont
179
191
//need the list of mgrs created in a dynamic engine anymore, so we clear out the mem ( and effetively take them out of the stop() list for dynamic shutdown )
@@ -182,28 +194,45 @@ void Engine::start()
182
194
183
195
//startup nodes
184
196
for( auto & node : m_nodes )
197
+
{
185
198
node -> start();
199
+
node -> setStarted();
200
+
}
186
201
}
187
202
188
203
voidEngine::stop()
189
204
{
205
+
// Ensure we only stop nodes/adapters that have started in the case an exception occurs during startup
0 commit comments