Miguel Grinberg

Results 485 comments of Miguel Grinberg

This package is not affected. You just need to configure your web server to use SSL.

SSL decryption and encryption is done by the web sierver to the incoming and outgoing traffic. This package does not need to know what happens to the traffic, it always...

> connection error with werkzeug > I only have some small glitches This is not sufficient description of the problem for me to investigate. Please be specific.

Yes, please provide the output of `pip freeze`

The `ConnectionError` problem should be addressed in the Flask-Sock 0.7.0 release. For the other problem I'm not sure. You are comparing two machines that have different versions of packages, so...

Connection reset by peer means exactly that: the client closed the connection. Is it the client or the server that is connected to the internet through the sim808? In any...

As I said, the client is doing this, so it really depends on how the client (i.e. browser) that you are using works. I can't really say if a slow...

This is likely a performance issue or bug in your application. Unfortunately a vague description of the problem is not enough for me to investigate. Please provide exact details and...

First of all, the `StopIteration` exception is not an error, it is a perfectly normal exception to raise when there is no more items to get from an iterable. If...

The `StopIteration` is handled by Gunicorn: https://github.com/benoitc/gunicorn/blob/ab9c8301cb9ae573ba597154ddeea16f0326fc15/gunicorn/workers/sync.py#L128-L139 If you prevent this and return `[]` instead then Gunicorn is going to write an empty HTTP response on the WebSocket connection. That...