Reputation: 359
I'm having this weird problem where when I run an app on GAE locally on Windows 7. Everything works fine except when I update the code; It works well the first 10 minutes and then it doesn't update when I edit the code. I have to close the server and open it again. It's not a cache problem, because even if I try it in a different browser the content still doesn't change.
I tried reinstalling python and appengine and it worked fine for 2 days, but then problem came back again. I would appreciate any help.
Thanks!
Upvotes: 2
Views: 383
Reputation: 9183
Since your issue is limited to Python files, it sounds like a bug that was brought up in the discussion forum and issue tracker.
The suggested workaround in the forum is to remove the .pyc
files corresponding the .py
file you are editing, restart the local server, and continue. Obviously this is sub-optimal, so I would suggest 'starring' the bug in the issue tracker to keep track of updates.
Upvotes: 1