Gunicorn没有服务png

时间:2011-05-16 13:39:33

标签: django gunicorn

我正在开发一个Django应用程序,它以各种形式显示数据,包括表格和条形图。它使用matplotlib将条形图创建为png。然后使用以下代码返回它:

.
.
.
canvas=FigureCanvas(fig)
response=HttpResponse(mimetype='image/png')
canvas.print_png(response)
return response

当我使用内置的Django开发服务器时,一切正常。但是,当我使用:

python manage.py run_gunicorn 

除条形图外,一切都有效。而不是条形图,我看到了URL。我是否必须运行nginx来获取gunicorn才能显示png图像,还是我还缺少其他东西?

修改

卷曲输出:

 About to connect() to 127.0.0.1 port 8000 (#0)
*   Trying 127.0.0.1... connected
* Connected to 127.0.0.1 (127.0.0.1) port 8000 (#0)
> GET /myapps/bar_chart1 HTTP/1.1
> User-Agent: curl/7.21.0 (x86_64-pc-linux-gnu) libcurl/7.21.0 OpenSSL/0.9.8o zlib/1.2.3.4 libidn/1.18
> Host: 127.0.0.1:8000
> Accept: */*
> 
< HTTP/1.1 200 OK
< Server: gunicorn/0.12.1
< Date: Mon, 16 May 2011 14:05:00 GMT
< Connection: close
< Transfer-Encoding: chunked
< Content-Type: image/png
< 
* Leftovers after chunking.  Rewinding 16379 bytes
* Closing connection #0

1 个答案:

答案 0 :(得分:2)

啊!这与我们最近在Gunicorn中修复的错误有关[1]。显然,Django在使用HttpResponse.write()时不会设置Content-Length。您可以手动设置或显然只是添加django.middleware.http.ConditionalGetMiddleware到您的中间件列表将导致Django添加Content-Length。

我们将在接下来的几天内发布一个新版本的Gunicorn,这样原来的bug很快就会修复。

[1] https://github.com/benoitc/gunicorn/commit/d83c63429eba755f5971217917e57feee85034be