From 9b0ffb71e5b47fff2095c24551b9e0fce4c0650e Mon Sep 17 00:00:00 2001 From: Thomas Keck Date: Sat, 13 Mar 2010 17:35:28 +0100 Subject: Min/Max mistake at blocksize calculation --- gui.py | 1 + proxy.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gui.py b/gui.py index 423d1e3..441a1f2 100644 --- a/gui.py +++ b/gui.py @@ -30,6 +30,7 @@ class Settings(gtk.Window): self.show_all() def on_quit(self, widget): + print self.time_slice.get_value() proxy.TIME_SLICE = self.time_slice.get_value() self.destroy() diff --git a/proxy.py b/proxy.py index 99793a8..ffd09a0 100755 --- a/proxy.py +++ b/proxy.py @@ -136,7 +136,7 @@ class MultipleProxyReader(object): and self.fetch_pos + 1 < self.content_length and not self.channel.is_closed \ and len( filter( (lambda f: f.proxy == fetcher.proxy), self.fetchers) ) < 2: #Start a new fetcher on this line if this fetchers is X-Bytes before finishing his jobs - blocksize = min(int(TIME_SLICE * fetcher.speed()), MIN_BLOCKSIZE) + blocksize = max(int(TIME_SLICE * fetcher.speed()), MIN_BLOCKSIZE) fetch_range = self.next_range(blocksize) print "Start new Fetcher, bs=%s range=%s" % (blocksize,fetch_range) self.fetchers.append( Fetcher(self, fetcher.proxy, self.url, self.header, fetch_range) ) -- cgit v1.2.1