Skip to content

Commit 00c7dd4

Browse files
committed
Added new method to index.py to fix an issue with chunked encoding and missing request bodies
1 parent f70d256 commit 00c7dd4

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

template/python27-flask/index.py

+12
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@
66

77
app = Flask(__name__)
88

9+
@app.before_request
10+
def fix_transfer_encoding():
11+
"""
12+
Sets the "wsgi.input_terminated" environment flag, thus enabling
13+
Werkzeug to pass chunked requests as streams. The gunicorn server
14+
should set this, but it's not yet been implemented.
15+
"""
16+
17+
transfer_encoding = request.headers.get("Transfer-Encoding", None)
18+
if transfer_encoding == u"chunked":
19+
request.environ["wsgi.input_terminated"] = True
20+
921
@app.route("/", defaults={"path": ""}, methods=["POST", "GET"])
1022
@app.route("/<path:path>", methods=["POST", "GET"])
1123
def main_route(path):

template/python3-flask-armhf/index.py

+12
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@
88

99
app = Flask(__name__)
1010

11+
@app.before_request
12+
def fix_transfer_encoding():
13+
"""
14+
Sets the "wsgi.input_terminated" environment flag, thus enabling
15+
Werkzeug to pass chunked requests as streams. The gunicorn server
16+
should set this, but it's not yet been implemented.
17+
"""
18+
19+
transfer_encoding = request.headers.get("Transfer-Encoding", None)
20+
if transfer_encoding == u"chunked":
21+
request.environ["wsgi.input_terminated"] = True
22+
1123
@app.route("/", defaults={"path": ""}, methods=["POST", "GET"])
1224
@app.route("/<path:path>", methods=["POST", "GET"])
1325
def main_route(path):

template/python3-flask/index.py

+12
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@
88

99
app = Flask(__name__)
1010

11+
@app.before_request
12+
def fix_transfer_encoding():
13+
"""
14+
Sets the "wsgi.input_terminated" environment flag, thus enabling
15+
Werkzeug to pass chunked requests as streams. The gunicorn server
16+
should set this, but it's not yet been implemented.
17+
"""
18+
19+
transfer_encoding = request.headers.get("Transfer-Encoding", None)
20+
if transfer_encoding == u"chunked":
21+
request.environ["wsgi.input_terminated"] = True
22+
1123
@app.route("/", defaults={"path": ""}, methods=["POST", "GET"])
1224
@app.route("/<path:path>", methods=["POST", "GET"])
1325
def main_route(path):

0 commit comments

Comments
 (0)