[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-05-13 Thread 'Osvaldo Lopez Acuña' via Google App Engine
It would be useful if you describe what kind of call your frontend is doing. Quota limits[1] could be reached sometimes and then you get this behavior. Appengine location, network configuration, Python, and Django versions would also be helpful to narrow your issue. In many cases, elevated

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-05-12 Thread 'Nikhil Patil' via Google App Engine
I tried but it seams - The dev_appserver tool does not support development of Python 3 apps on Windows. https://cloud.google.com/appengine/docs/standard/python3/tools/local-devserver-command On Saturday, May 7, 2022 at 7:22:15 AM UTC+9 Rogelio Monter Rodriguez wrote: > Have you

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-05-06 Thread 'Rogelio Monter Rodriguez' via Google App Engine
Have you tried debugging your app locally using the local development server or using the local development server

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-05-06 Thread 'Nikhil Patil' via Google App Engine
To Explain my overall situation, My app response is lost though the API program executes as expected. This happens randomly. here is my app.yaml # # Copyright 2021 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-04-21 Thread 'Horace (Cloud Platform Support)' via Google App Engine
Hello Since we don't have visibility on your project to check your App Engine settings including your yaml file and further use our internal tools to find out what is happening, kindly take a look at your configuration such as your max instances, idle time out, and scaling. From your log,

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-04-21 Thread 'Nikhil Patil' via Google App Engine
I think no issue on application side. I have logged upto last line of my post method and after that is return response. *Code:* class myView(generics.ListCreateAPIView): permission_classes = (IsAuthenticated,) http_method_names = ['get', 'post'] search_fields = ['some', 'thing', 'here'']

[google-appengine] Re: App Engine doesn't send response leads to timeout at client

2022-04-19 Thread 'Andres Fiesco Casasola' via Google App Engine
Do you get any errors when you get the timeout? Could please post your code and your logs? I found these stackoverflow cases that can help you (most common errors): [1]: https://stackoverflow.com/questions/68420538/google-cloud-app-engine-deploy-fail-django [2]: