We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8383981 commit 3cf5354Copy full SHA for 3cf5354
src/Main.cxx
@@ -329,9 +329,6 @@ MainConfigured(const CommandLineOptions &options,
329
Instance instance;
330
global_instance = &instance;
331
332
- instance.io_thread.Start();
333
- instance.rtio_thread.Start();
334
-
335
#ifdef ENABLE_NEIGHBOR_PLUGINS
336
instance.neighbors = std::make_unique<NeighborGlue>();
337
instance.neighbors->Init(raw_config,
@@ -424,6 +421,9 @@ MainConfigured(const CommandLineOptions &options,
424
421
};
425
422
#endif
426
423
+ instance.io_thread.Start();
+ instance.rtio_thread.Start();
+
427
428
if (instance.neighbors != nullptr)
429
instance.neighbors->Open();
0 commit comments