我正在处理 django 频道并在 google flex 引擎上部署它们时遇到问题,首先我收到“部署未能在分配的时间内变得健康”的错误,并通过在 app.yaml 中添加 readiness_check 来解决它,现在我得到了以下错误:
(gcloud.app.deploy) 操作 [apps/socketapp-263709/operations/65c25731-1e5a-4aa1-83e1-34955ec48c98] 超时。该操作可能仍在进行中。
应用程序.yaml
runtime: python
env: flex
runtime_config:
python_version: 3
instance_class: F4_HIGHMEM
handlers:
# This configures Google App Engine to serve the files in the app's
# static directory.
- url: /static
static_dir: static/
- url: /.*
script: auto
# [END django_app]
readiness_check:
check_interval_sec: 120
timeout_sec: 40
failure_threshold: 5
success_threshold: 5
app_start_timeout_sec: 1500
我该如何解决这个问题,有什么建议吗?