Have you updated your crons with something like this?
> appcfg.py update_cron dir_with_cron_file?
See here for more info:
https://cloud.google.com/appengine/docs/standard/python/tools/appcfg-arguments#update_cron
You'll also need to ensure the /tasks/test URL is routed to your Flex environment service, either as the "default" service or via routing rules in dispatch.yaml (which you can upload with appcfg.py also).
Nick
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscribe@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/fb9f299d-0f96-45d7-864f-513cffc4f70d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Have you updated your crons with something like this?
> appcfg.py update_cron dir_with_cron_file?
See here for more info:
https://cloud.google.com/appengine/docs/standard/python/tools/appcfg-arguments#update_cron
You'll also need to ensure the /tasks/test URL is routed to your Flex environment service, either as the "default" service or via routing rules in dispatch.yaml (which you can upload with appcfg.py also).
Nick
On 05/03/2017 1:19 AM, "Ben Rometsch" <b...@solidstategroup.com> wrote:
Hi,--I'm running a custom Docker runtime on flexible VMs. I have an cron.yaml file in my root dir that looks like:cron:- description: daily summary joburl: /tasks/testschedule: every 1 minutesIt's not being run. Is cron.yaml supported in custom Docker runtimes? The documentation doesn't make any reference.Thanks
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-appengi...@googlegroups.com.
To post to this group, send email to google-a...@googlegroups.com.
Ah thats what I needed - that works now. Thanks. Feels like the custom/flex VM documentation could do with being fleshed out a bit?