summaryrefslogtreecommitdiffstats
path: root/rteval/modules
diff options
context:
space:
mode:
authorDavid Sommerseth <davids@redhat.com>2012-12-05 02:39:17 +0100
committerDavid Sommerseth <davids@redhat.com>2012-12-05 02:39:17 +0100
commit7b3153b9ff65658f0b495462abbbe2f25b8fe810 (patch)
tree7f73bbb82ce42e20fd6b978196ca819481f6a97c /rteval/modules
parentbb12bc71d37688e01749368467c256f662d4f937 (diff)
downloadrteval-7b3153b9ff65658f0b495462abbbe2f25b8fe810.tar.gz
rteval-7b3153b9ff65658f0b495462abbbe2f25b8fe810.tar.xz
rteval-7b3153b9ff65658f0b495462abbbe2f25b8fe810.zip
Don't check if the module is alive at the Start(), it's too early now
Checking if the modules are alive needs to happen after it has been unleashed. Signed-off-by: David Sommerseth <davids@redhat.com>
Diffstat (limited to 'rteval/modules')
-rw-r--r--rteval/modules/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/rteval/modules/__init__.py b/rteval/modules/__init__.py
index 2e8b25d..b57f25c 100644
--- a/rteval/modules/__init__.py
+++ b/rteval/modules/__init__.py
@@ -323,8 +323,6 @@ start their workloads yet"""
while busy:
busy = False
for (modname, mod) in self.__modules:
- if not mod.isAlive():
- raise RuntimeError("%s died" % modname)
if not mod.isReady():
busy = True
self._logger.log(Log.DEBUG, "Waiting for %s" % modname)