Closed amrosado closed 6 years ago
I've also tried using the GoogleAppEngine development server with django instead of webapp2 and it also seems this same problem also occurs with a basic django configuration. I've deployed other applications in a production mode using GoogleAppEngine, but it appears this production deployment is not impacted by this problem.
It appears my problem was with my app.yaml file url pattern and for some reason the request would work from other browsers, but not firefox.
I'm experiencing some problems with using webapp2 where I'm noticing I cannot successfully complete a GET request to a certain URL in firefox, but I can with all other major browsers. In particular, it appears as if my GET method in webapp2 is not being called at all in firefox and it always returns a 404 despite navigating to the same URL in other browsers. From firefox the request headers:
And response headers:
The same url request in chrome:
And response:
I've tried changing various headers, etc. but when I make the request from firefox I am not getting to a point where the development server even sees a request from the firefox browser. Based on firefox's development console I don't believe any other requests are being made to development server.