Cron.yaml doesn't route requests to proper module on dev server
问题 I'm using GAE 1.9.2 -- I have a cron.yaml file with a specific request I want routed to a module called updater.yaml. In my cron.yaml file I have: cron: - description: Daily updater url: /update schedule: every day 02:00 timezone: America/New_York target: updater I loaded my two modules to my dev server with: $ dev_appserver.py app.yaml updater.yaml Any ideas? Thanks. Edit : Relevant part of updater.yaml: application: [my app name] module: updater version: one runtime: python27 api_version: 1