Seraf
Seraf

Reputation: 950

Cron Jobs on Google App Engine

Am I able to check Cron Jobs when App is deployed?

Locally it is: localhost:8000/cron

I was guessing maybe my-service.my-app.appspot.com/cron, but didn't work.

Upvotes: 2

Views: 1551

Answers (2)

Alvaro Rodriguez Scelza
Alvaro Rodriguez Scelza

Reputation: 4164

As per Seraf own anser, you have to run

gcloud app deploy cron.yaml

in order to upload cron tasks, as per: https://cloud.google.com/appengine/docs/flexible/python/scheduling-jobs-with-cron-yaml?hl=es-419#uploading_cron_jobs

Upvotes: 0

GAEfan
GAEfan

Reputation: 11360

No. But you can check them in your admin console:

https://console.cloud.google.com/appengine/taskqueues?project=my-app&tab=CRON

Upvotes: 3

Related Questions