From f9f25e064678eeaa96d91d3af7b543334b24bc4c Mon Sep 17 00:00:00 2001 From: RaNaN Date: Tue, 13 Dec 2011 23:22:08 +0100 Subject: little fix --- module/common/APIExerciser.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'module/common') diff --git a/module/common/APIExerciser.py b/module/common/APIExerciser.py index f782efa53..96f5ce9cf 100644 --- a/module/common/APIExerciser.py +++ b/module/common/APIExerciser.py @@ -31,7 +31,7 @@ sumCalled = 0 def startApiExerciser(core, n): for i in range(n): - APIExerciser(core) + APIExerciser(core).start() class APIExerciser(Thread): @@ -53,14 +53,14 @@ class APIExerciser(Thread): self.id = idPool - if core: - self.core.log.info("API Excerciser started %d" % self.id) - idPool += 1 #self.start() def run(self): + + self.core.log.info("API Excerciser started %d" % self.id) + out = open("error.log", "ab") #core errors are not logged of course out.write("\n" + "Starting\n") -- cgit v1.2.3