William Tucker <[email protected]> writes:
> Is it possible to throttle back MW-ZIP such that it only fetches one
> thing at a time and does not attempt to fetch so many things
> simultaneously?
you'll have to patch the code. grep the code for instanciations of
gevent.pool.Pool classes and add/lower the first argument,
e.g. change:
self.image_download_pool = gevent.pool.Pool(10)
to
self.image_download_pool = gevent.pool.Pool(1)
--
Cheers
Ralf
--
You received this message because you are subscribed to the Google Groups
"mwlib" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/mwlib?hl=en.