From 371ed3e634a9de63d9a5a707a033541272f67437 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Thu, 30 Dec 2010 18:20:44 +0100 Subject: MU premium lifetime fix --- module/network/HTTPChunk.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'module/network/HTTPChunk.py') diff --git a/module/network/HTTPChunk.py b/module/network/HTTPChunk.py index dee185342..1cc9841a6 100644 --- a/module/network/HTTPChunk.py +++ b/module/network/HTTPChunk.py @@ -182,10 +182,9 @@ class HTTPChunk(HTTPRequest): if self.p.bucket: sleep(self.p.bucket.consumed(size)) - else: #@TODO nice to have: traffic sharping algr. which calculates sleep time to reduce cpu load - if size < 5000: - #sleep if chunk size gets low, to avoid many function calls and hope chunksize gets bigger - sleep(0.007) + elif size < 5000: #@TODO nice to have: traffic sharping algr. which calculates sleep time to reduce cpu load + #sleep if chunk size gets low, to avoid many function calls and hope chunksize gets bigger + sleep(0.007) if self.range and self.arrived > (self.range[1]-self.range[0]): return 0 #close if we have enough data -- cgit v1.2.3