Hi, I tried to follow this tutorial in getting started with Google Cloud Endpoints: https://cloud.google.com/endpoints/docs/openapi/get-started-app-engine
I managed to successfully deploy the Endpoints configuration using the sample source code. However, when I tried to deploy the API backend to App Engine. I encountered the following error: ERROR: (gcloud.app.deploy) Operation [apps/***/operations/***] timed out. This operation may still be underway. This was my updated app.yaml: ------------------------------ -- runtime: python env: flex entrypoint: gunicorn -b :$PORT main:app runtime_config: python_version: 3 # [START configuration] endpoints_api_service: name: xxxxxxx.appspot.com config_id: xxxxxxx # [END configuration] liveness_check: check_interval_sec: 120 timeout_sec: 40 failure_threshold: 5 success_threshold: 5 initial_delay_sec: 500 readiness_check: check_interval_sec: 120 timeout_sec: 40 failure_threshold: 5 success_threshold: 5 app_start_timeout_sec: 3500 -------------------------------- I hope you can give feedback on how to resolve this. Thanks! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/473c3701-7fc8-4ba4-9f1b-f3b712335687%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
