Skip to content Skip to sidebar Skip to footer

Too Many Open Files Python

I'm trying to resize images. It works fine, but my ImageField, which is to_field, is opening but not closing. So I have an error too many open files. I tried some work-around solut

Solution 1:

Old question but I think it is the django field to_field that needs to be closed:

to_field.close()

Post a Comment for "Too Many Open Files Python"