Gunicorn: 19.7リリース

作成日 2017年02月26日  ·  4コメント  ·  ソース: benoitc/gunicorn

19.7バージョンのリリースを追跡するためのチケット

  • [x]プロジェクト管理ページを追加
  • [x]新しいプロジェクトのトリアージバグ
  • [x]変更ログを準備する
) top priority - Mailing List - release

最も参考になるコメント

19.7リリース

全てのコメント4件

利用可能なプロジェクトページ: https

変更ログが実行されます。 リリースは明日行われます

19.7リリース

私たちのサーバーの1つで、gunicornを実行しています。 Postgres接続の問題が発生した後も、次の例外が発生することに気づきました。

2018-02-12 02:01:02 [1769] [ERROR] Exception in post_request hook
Traceback (most recent call last):
  File "/nix/store/ciwd5mg0mkcnw4bwhzap8g3k9630a0mp-python2.7-gunicorn-19.7.1/lib/python2.7/site-packages/gunicorn/workers/async.py", line 144, in handle_request
    self.cfg.post_request(self, req, environ, resp)
  File "/home/xxx/conf/gunicorn_prod.py", line 132, in post_request
    worker.nr, req.method, req.path, resp.status_code, total_time)
AttributeError: 'Response' object has no attribute 'status_code'

post_requestコードは次のとおりです。

def post_request(worker, req, environ, resp):
    total_time = time.time() - worker.start_time
    worker.log.debug(
        "GNCRN POST WORKER [cnt:%s]: %s %s resp: %s, Load Time: %.3fs",
        worker.nr, req.method, req.path, resp.status_code, total_time)
このページは役に立ちましたか?
0 / 5 - 0 評価