Ignore:
Timestamp:
05/12/19 13:50:52 (5 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
version_0.39_maint
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

More data is read in one call when reading the files to update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/update.py

    r953 r957  
    367367                fin = urllib2.urlopen(updateURL + "/" + path)
    368368                while True:
    369                     data = fin.read(4096)
     369                    data = fin.read(256*1024)
    370370                    if not data:
    371371                        break
Note: See TracChangeset for help on using the changeset viewer.