fix(registry): Offset module loading

This commit is contained in:
Michael Carlberg 2016-06-14 02:55:32 +02:00
parent 37ceb4d5c4
commit 4991e18b19
1 changed files with 1 additions and 0 deletions

View File

@ -47,6 +47,7 @@ void Registry::load()
for (auto &&entry : this->modules) {
std::lock_guard<std::mutex> wait_lck(this->wait_mtx);
entry->module->start();
std::this_thread::sleep_for(10ms);
}
}