-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with minor version of CURRENT_VERSION_ID #90
Comments
I think they forgot to update the docs.. it was a bad idea to have it always 1 because you are usually using that for cache forever in the scripts or stylesheets as a query argument to make sure you're getting the updated one.. but it also not showing the current date or anything but something that it looks like random so in general it's not a problem for the dev environment.. in the issue #63 Jörn also wanted to fix it but it's not worth it if you ask me.. |
Filled upstream as documentation issue; see https://code.google.com/p/googleappengine/issues/detail?id=10601 For |
The as for the misleading date or something.. we could probably document it.. |
Should have caught it before... the error is a "timestamp out of range for platform time_t" |
When there is no exception caught I'm seeing (as admin) 1985, 2004, 2010, 2016 (future), 2003, 1972, etc based timestamps on the hello page. When there has been an exception, it shows "a few seconds ago" and "Invalid date" on hoover over, looking at page source, the By dumping some more
|
Hmm, above snippet doesn't cut it... |
According to https://developers.google.com/appengine/docs/python/#Python_The_environment the minor version of CURRENT_VERSION_ID is always "1" on the development web server.
However, I'm seeing stuff like 423594672088649939 using version 1.8.9 of the SDK (on a Xubuntu virtual machine), which I'm afraid sometimes triggers an exception in
config.py
when converting tolong
in the CURRENT_VERSION_TIMESTAMP; and/or resulting in CURRENT_VERSION_DATE being way out in the past or the future (that is: on the development web server).Is this something in my development VM, or are others also seeing the
CURRENT_VERSION_ID.split('.')[1]
unequal to "1" on their local development web server testing (using SDK 1.8.9)?The text was updated successfully, but these errors were encountered: