mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-04 19:38:03 +03:00
[#2889] Fixes for 'Too many files open' error
* Ensure all file descriptors are closed. Using the with statement ensures closure. * The main problem was with thousands of unclosed file desciptors from tracker_icons mkstemp. * Use a prefix 'deluge_ticon.' to identify created tracker_icon tmp files.
This commit is contained in:
parent
58835eeb2e
commit
9dd3b1617d
31 changed files with 237 additions and 193 deletions
|
@ -114,7 +114,8 @@ def make(filename, outfile):
|
|||
outfile = os.path.splitext(infile)[0] + '.mo'
|
||||
|
||||
try:
|
||||
lines = open(infile).readlines()
|
||||
with open(infile) as _file:
|
||||
lines = _file.readlines()
|
||||
except IOError, msg:
|
||||
print >> sys.stderr, msg
|
||||
sys.exit(1)
|
||||
|
@ -181,7 +182,8 @@ def make(filename, outfile):
|
|||
output = generate()
|
||||
|
||||
try:
|
||||
open(outfile, "wb").write(output)
|
||||
with open(outfile, "wb") as _file:
|
||||
_file.write(output)
|
||||
except IOError, msg:
|
||||
print >> sys.stderr, msg
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue