I am attempting to deploy from my local machine to app engine standard, and nothing I do seems to increase the timeout from 10 mins, every deploy fails with the error ERROR: (gcloud.app.deploy) Error Response: [4] Cloud build did not succeed within 10m.
Any suggestions appreciated! My cloudbuild.yaml is *steps:* *- name: gcr.io/cloud-builders/npm* * args: [ install ]* *- name: 'gcr.io/$PROJECT_ID/ng'* * args: ['build', '--prod']* *- name: gcr.io/cloud-builders/gcloud* * args: [ app, deploy ]* * timeout: 2000s* *timeout: 3600s* On Friday, 12 June 2020 at 07:50:41 UTC+10 [email protected] wrote: > Thanks, David > works for me > > > On Wednesday, April 8, 2020 at 12:00:05 PM UTC-7, David (Cloud Platform > Support) wrote: >> >> Another workaround other than increasing the timeout limit would be >> adding “grpcio==1.27.2” to your requirements.txt and then try to redeploy >> > -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/14391140-f28b-43b4-b1c1-b84af24081c5n%40googlegroups.com.
