Fixed
Status Update
Comments
ds...@google.com <ds...@google.com>
do...@gmail.com <do...@gmail.com> #2
I can confirm this issue on my system as well.
SDK Version: 1.8.2
Language: Python 2.7
OS: Windows 7 Premium 64-bit SP1
I know that it was working with SDK 1.8.1
My cron.yaml file given below:
cron:
- description: update things
url: /admin/cron/update-stacks
schedule: every 2 hours synchronized
timezone: America/Chicago
- description: invalidate old logins
url: /admin/cron/invalidate-logins
schedule: every day 00:01
timezone: America/Chicago
- description: flush old logins
url: /admin/cron/flush-old-logins
schedule: 1st day 00:03
timezone: America/Chicago
SDK Version: 1.8.2
Language: Python 2.7
OS: Windows 7 Premium 64-bit SP1
I know that it was working with SDK 1.8.1
My cron.yaml file given below:
cron:
- description: update things
url: /admin/cron/update-stacks
schedule: every 2 hours synchronized
timezone: America/Chicago
- description: invalidate old logins
url: /admin/cron/invalidate-logins
schedule: every day 00:01
timezone: America/Chicago
- description: flush old logins
url: /admin/cron/flush-old-logins
schedule: 1st day 00:03
timezone: America/Chicago
oc...@gmail.com <oc...@gmail.com> #3
I have the same issue.
ca...@gmail.com <ca...@gmail.com> #4
I get the same error in url http://localhost:8000/cron
Is maybe related to new version 1.8.2?
Is maybe related to new version 1.8.2?
ah...@gmail.com <ah...@gmail.com> #5
I have the same issue:
* OS: winxp sp2
* SDK Version: 1.8.2
* Python Version: 2.7.5
Also, I concur with others that things were hunky dory with SDK v 1.8.1.
The question is, should we go back to 1.8.1 or is there a fix in sight?
* OS: winxp sp2
* SDK Version: 1.8.2
* Python Version: 2.7.5
Also, I concur with others that things were hunky dory with SDK v 1.8.1.
The question is, should we go back to 1.8.1 or is there a fix in sight?
[Deleted User] <[Deleted User]> #6
Confirmed on Mac OS X
http://localhost:8000/cron fails with SDK 1.8.2
works fine after rolling back to SDK 1.8.1
works fine after rolling back to SDK 1.8.1
ca...@gmail.com <ca...@gmail.com> #7
[Comment deleted]
ca...@gmail.com <ca...@gmail.com> #8
You can roll back to 1.8.1, in order to work in the localhost site.
But if you want to make it work in GAE server, how you can change SDK version?
But if you want to make it work in GAE server, how you can change SDK version?
zh...@gmail.com <zh...@gmail.com> #9
I have the same issue,
OS: windows 8
Python: 2.7.3
GAE SDK: 1.8.2
the cron admin page works well in SDK 1.8.1 and i got the error call stack immediately after doing inplace upgrade to 1.8.2, no change made to the cron.yaml.
OS: windows 8
Python: 2.7.3
GAE SDK: 1.8.2
the cron admin page works well in SDK 1.8.1 and i got the error call stack immediately after doing inplace upgrade to 1.8.2, no change made to the cron.yaml.
oc...@gmail.com <oc...@gmail.com> #10
I forgot to add:
OS: OSX 10.8.4
Python: 2.7.3
GAE SDK: 1.8.2
OS: OSX 10.8.4
Python: 2.7.3
GAE SDK: 1.8.2
rs...@google.com <rs...@google.com> #11
For Linux users, you will need to patch your exisiting 1.8.2 installation. Change to the directory where google_appengine is installed (to be clear, your working directory is not google_appengine itself but the parent; to verify this make sure "ls google_appengine" succeeds). Once there, run the command "patch -p0 < cron-ui-1.8.2.1.patch".
For Mac users, you will also need to patch your existing 1.8.2 installation using command lines tools. The location of google_appengine is inside the launcher bundle at GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources. After changing to that directory, run the command "patch -p0 < cron-ui-1.8.2.1.patch".
For Windows users, you can download a new installer athttps://googleappengine.googlecode.com/files/GoogleAppEngine-1.8.2.1.msi (note: the file is marked as deprecated for process reasons; please ignore that).
For Mac users, you will also need to patch your existing 1.8.2 installation using command lines tools. The location of google_appengine is inside the launcher bundle at GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources. After changing to that directory, run the command "patch -p0 < cron-ui-1.8.2.1.patch".
For Windows users, you can download a new installer at
rs...@google.com <rs...@google.com> #12
oc...@gmail.com <oc...@gmail.com> #13
Is this preferable to patching? Mine's already patched up and working.
r....@gmail.com <r....@gmail.com> #14
The two Mac methods create identical results; if your patched version is working you are good to go.
rs...@google.com <rs...@google.com>
rd...@gmail.com <rd...@gmail.com> #16
I had this problem also. I upgraded to SDK 1.8.3 on Windows and now I can see cron jobs on the development admin console.
Description
Error loading cron.yaml:
Traceback (most recent call last):
File "/home/User/google_appengine/google/appengine/tools/devappserver2/admin/cron_handler.py", line 42, in get
values['cronjobs'] = self._get_cron_jobs()
File "/home/User/google_appengine/google/appengine/tools/devappserver2/admin/cron_handler.py", line 48, in _get_cron_jobs
cron_info = self._parse_cron_yaml()
File "/home/User/google_appengine/google/appengine/tools/devappserver2/admin/cron_handler.py", line 78, in _parse_cron_yaml
with open(os.path.join(self.configuration.servers[0].application_root,
AttributeError: 'ApplicationConfiguration' object has no attribute 'servers'
SDK Version : 1.8.2
Language: Python
OS: Ubuntu (Don't know the same issue in other OS too)
SDK 1.8.1 works as expected.