Giter Club home page Giter Club logo

Comments (3)

davidism avatar davidism commented on June 10, 2024

Call response.close() at the end. See Flask itself for examples of this in tests.

from flask.

PaulWhitingUVC avatar PaulWhitingUVC commented on June 10, 2024

Call response.close() at the end. See Flask itself for examples of this in tests.

@davidism, I assume you are referring to the call to rv.close() in the test_send_from_directory code.

Unfortunately, the call to send_from_directory and the associated close both happen in the test code proper. When called by production code the call to response.close() cannot be done without error. When I modify download_resources to the following it causes additional errors:

@app.route('/<path:name>')
def download_resources(name):
    response = send_from_directory('resources', name)
    response.close()
    return response

Error:

self = <werkzeug.wsgi.FileWrapper object at 0x10c061150>

    def __next__(self) -> bytes:
>       data = self.file.read(self.buffer_size)
E       ValueError: read of closed file

venv/lib/python3.11/site-packages/werkzeug/wsgi.py:332: ValueError

The documentation does not mention a call to response.close().

Other documentation similarly does not call response.close().

It seems to me that the rv.close() in Flask's test case masks the unclosed file error, as you are not using send_from_directory via an external call like a Flask app would.

Thoughts?

from flask.

davidism avatar davidism commented on June 10, 2024

You don't call it in your application, only in your test. WSGI servers close the response automatically, the test client cannot.

from flask.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.