【发布时间】:2019-09-13 10:35:54
【问题描述】:
从昨天开始,GAE 在app.yaml 中忽略了我的entrypoint
我的app.yaml:
runtime: python37
entrypoint: gunicorn -k eventlet -b :$PORT main:app
导致以下日志输出:
2019-04-24 07:39:58 default[20190423t203005] [2019-04-24 07:39:58 +0000] [8] [INFO] Starting gunicorn 19.9.0
2019-04-24 07:39:58 default[20190423t203005] [2019-04-24 07:39:58 +0000] [8] [INFO] Listening at: http://0.0.0.0:8081 (8)
2019-04-24 07:39:58 default[20190423t203005] [2019-04-24 07:39:58 +0000] [8] [INFO] Using worker: threads
但工人应该是eventlet 而不是threads。
【问题讨论】:
标签: python google-app-engine google-cloud-platform