[google-appengine] Re: GCP components update causes “ConnectionRefusedError: [Errno 111] Connection refused” errors

2018-08-01 Thread 'George (Cloud Platform Support)' via Google App Engine
The he Nginx process would serve a 502 error for different reasons, so in itself, this message is not very useful. You may get 502 errors for an exception in your application, for an internal API call that causes an exception, but also if a request isn't replied to within the prescribed limits.

[google-appengine] Re: GCP components update causes “ConnectionRefusedError: [Errno 111] Connection refused” errors

2018-08-01 Thread epssdev
Figured out that GCP uses python 3.6 when python_version is set to 3 in app.yaml Changed the version to 3.5. Hopefully, this should solve some problems. On Tuesday, July 31, 2018 at 10:10:33 AM UTC-7, eps...@gmail.com wrote: > > My GCP deployment was working fine until I did "gcloud components up

[google-appengine] Re: GCP components update causes “ConnectionRefusedError: [Errno 111] Connection refused” errors

2018-08-01 Thread epssdev
Figured out that the GCP uses python 3.6 if the runtime config in app.yaml is 3. My app uses python 3.5, there are some subtle differences between python 3.5 and 3.6 that may be causing errors. 'python_version: 3.5' should downgrade the runtime env runtime_config: python_version: 3.5 On T