Kalle Moodh
Kalle Moodh
We just ran into the same issue. Looking at the implementation: ``` def _build_werkzeug_request_data(request): request_data = { 'url': request.url, 'GET': dict(request.args), 'POST': dict(request.form), 'user_ip': _extract_user_ip(request), 'headers': dict(request.headers), 'method': request.method, 'files_keys':...
Thanks, here's how I removed the data from our end, but I haven't fully tested it yet :) ``` def initialize_rollbar(app): def _payload_handler(payload): try: payload['data']['request']['body'] = {} except Exception: pass...
Any news on this?
Posted an issue here on the updated project: https://github.com/mstamy2/PyPDF2/issues/20
My input might be unrelated (if so please tell me so I can create a new issue): Something similar happens when you run the gunicorn server with multiple workers. Sockets...
Alright, feel free to remove my post (and this one), I'll write a more detailed ticket tomorrow! :)
Hello. Is there any news on this? Can I do something to help? I've tried with various methods but I believe I'm simply not proficient enough when it comes to...
Hello, any news on this? We're planning on updating a huge site with socketio-gevent. Having to create multiple apps bound to different ports for IE to works feels like such...
https://github.com/abourget/gevent-socketio/issues/112#issuecomment-20478209
http://onpython3yet.com/packages/show/gevent-socketio