私はdjangoチャンネルに取り組んでおり、それらをGoogleフレックスエンジンにデプロイしているときに問題が発生しました.最初に「デプロイが割り当てられた時間内に正常になることができませんでした」というエラーが発生し、app.yamlにreadiness_checkを追加することで解決しました.以下のエラー:
(gcloud.app.deploy) オペレーション [apps/socketapp-263709/operations/65c25731-1e5a-4aa1-83e1-34955ec48c98] がタイムアウトしました。この操作はまだ進行中の可能性があります。
App.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
この問題を解決するにはどうすればよいですか、何か提案はありますか?