From 4991e18b199fd3063934298eae0545e391490292 Mon Sep 17 00:00:00 2001
From: Michael Carlberg <c@rlberg.se>
Date: Tue, 14 Jun 2016 02:55:32 +0200
Subject: [PATCH] fix(registry): Offset module loading

---
 src/registry.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/registry.cpp b/src/registry.cpp
index a35b5e33..618efb1c 100644
--- a/src/registry.cpp
+++ b/src/registry.cpp
@@ -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);
   }
 }