Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine not updating deployed files

I'm getting some strange issues with google app engine serving old versions of files. I have included some logging in one of my servlets and deployed to google app engine several times over the last 24 hours. However, instead of seeing the logging i added, I'm seeing logs from a previous version of the file every time the servlet runs.

I've tried changing versions and redeploying but this doesnt seem to fix the problem.

I'm using Eclipse Juno with the app engine plugin if that makes a difference.

Any ideas what I can try or what I might be doing wrong?

like image 327
ConditionRacer Avatar asked Oct 01 '12 17:10

ConditionRacer


2 Answers

In the logs, make sure that you're checking the correct version:

version in the logs of app engine console

Otherwise redeploy to a brand new version and check that version explicitly directly from the version url that can be found under the Versions section.

like image 76
Lipis Avatar answered Sep 21 '22 14:09

Lipis



December 2020 Answer


Not sure if this is an account or billing specific setting, but I found that App Engine started not updating to my latest app deploy once I reached 50 Versions in my App Engine list.

After deleting a bunch of old versions (taking down to 30) on next deploy it picked up my latest changes immediately.

like image 36
Ergin Avatar answered Sep 21 '22 14:09

Ergin