From: Guillaume Pellerin Date: Fri, 17 Apr 2009 07:44:30 +0000 (+0000) Subject: remove delay test X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=42bd7919a7af6fba0548b545487d216e3d2708a2;p=deefuzzer.git remove delay test --- diff --git a/deefuzz.py b/deefuzz.py index 280963f..c4c6783 100755 --- a/deefuzz.py +++ b/deefuzz.py @@ -427,10 +427,8 @@ class Station(Thread): it = q.get(1) try: self.channel.send(__chunk) + self.channel.sync() # self.logger.write('Station delay (ms) ' + self.short_name + ' : ' + str(self.channel.delay())) - # Sleeping only if delay is positive - if self.channel.delay() > 0: - self.channel.sync() except: self.logger.write('ERROR : Station ' + self.short_name + ' : could not send the buffer... ') q.task_done()