flask-log-request-id icon indicating copy to clipboard operation
flask-log-request-id copied to clipboard

Flask extension to track and log Request-ID headers produced by PaaS like Heroku and load balancers like Amazon ELB

Results 17 flask-log-request-id issues
Sort by recently updated
recently updated
newest added
trafficstars

Add configuration file to run Tox tests. * [ ] Support python 2.7 * [ ] Support python 3.5, 3.6

enhancement
testing

- flask._app_ctx_stack API dropped in v3 - No breaking changes in this PR ( the PR supports older version too) ---- If anyone wants to install this PR branch directly....

Upon using the latest version of this package (0.10.2) in conjunction with the latest version of Flask (2.2), I'm getting the following warnings: ``` ./usr/local/lib/python3.7/site-packages/flask_log_request_id/request_id.py:18: DeprecationWarning: '_app_ctx_stack' is deprecated and...

According to the [Flask documentation](https://flask.palletsprojects.com/en/3.0.x/changes/#version-2-2-0), `_app_ctx_stack.top` and `_request_ctx_stack.top` are deprecated since `2.2`. This PR fixes below exception which occurs Flask version > `2.2`. ``` from flask import _app_ctx_stack as stack...

Add this PR just for someone looking for a fix if you are using this lib and Flask > 2.2

I want to log the request id of the requests executed using futures.concurrent. But the request_id is None due to the request context executing only one request at a time....