Tag: python
-
OpenStack Horizon is very picky about its dependencies versions
If you’re seeings this error when launching Horizon in the browser, then you may be installing it wrong. If you’re seeing the above error in the console, you also need to specify an upper constraints file to pip via the -c <upper_constraints_file> parameter. You can find the upper-constraints.txt file in the openstack/requirements repo, remember to switch to the…
-
Handling requests with Chunked Transfer Encoding in Python with Apache/mod_wsgi and uWSGI.
What is Chunked Transfer Encoding? Chunked Transfer Encoding is a method introduced in HTTP 1.1 for sending data as a series of successive chunks. The Content-Length header is not set, therefore nor the sender nor the receiver need to know the size of the entire request beforehand. This allows the sender to start transmitting without buffering the entire…