I am running into a known AppEngine issue where the wrong static content is cached if I go to a particular URL for my app, but the right static content shows up if I append a ?foo parameter to bust the cache, and VERSION.myapp.appspot.com works too.
Is there any way to get the correct content showing up at the unmodified URL?
I would be happy to delete the app and restore it or anything drastic. The app isn't live, but I need it to be in a couple of hours. Anything to get those URLS working so the mobile app talking to the AppEngine app gets the right data.
EDIT
cURLing the headers, I see:
HTTP/1.1 200 OK
ETag: "ZN9VxQ"
Date: Tue, 14 Aug 2012 02:00:58 GMT
Expires: Wed, 15 Aug 2012 02:00:58 GMT
Content-Type: text/html
Server: Google Frontend
Cache-Control: public, max-age=86400
Age: 34623
Transfer-Encoding: chunked
Am I hosed for another 50,000 seconds? Anyway to shorten that?
EDIT FOR COMMENTS:
In app.yaml, I have this handler:
- url: /static
static_dir: static
expiration: 1s
I have now tried removing the expiration:
- url: /static
static_dir: static
And I added this to the top of app.yaml, based on the docs:
default_expiration: "1m"
Also, deleting files doesn't make them disappear when I deploy.
