From 38facd3466919b3cdbd48818e142cc8731b359f2 Mon Sep 17 00:00:00 2001 From: Ryan Matsumoto Date: Mon, 19 Sep 2016 11:29:37 -0700 Subject: [PATCH 1/2] Taskqueue example bug - renamed file to app.yaml --- .../standard/taskqueue/counter/{application.yaml => app.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename appengine/standard/taskqueue/counter/{application.yaml => app.yaml} (100%) diff --git a/appengine/standard/taskqueue/counter/application.yaml b/appengine/standard/taskqueue/counter/app.yaml similarity index 100% rename from appengine/standard/taskqueue/counter/application.yaml rename to appengine/standard/taskqueue/counter/app.yaml From bf340b346474b8a82f4119b55576df819c30d080 Mon Sep 17 00:00:00 2001 From: Ryan Matsumoto Date: Mon, 19 Sep 2016 12:36:33 -0700 Subject: [PATCH 2/2] Fixed README to say app.yaml not application.yaml --- appengine/standard/taskqueue/counter/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appengine/standard/taskqueue/counter/README.md b/appengine/standard/taskqueue/counter/README.md index e7cc372faba6..a0eceab788e8 100644 --- a/appengine/standard/taskqueue/counter/README.md +++ b/appengine/standard/taskqueue/counter/README.md @@ -2,11 +2,11 @@ To run this app locally, specify both `.yaml` files to `dev_appserver.py`: - dev_appserver.py -A your-app-id application.yaml worker.yaml + dev_appserver.py -A your-app-id app.yaml worker.yaml To deploy this application, specify both `.yaml` files to `appcfg.py`: - appcfg.py update -A your-app-id -V 1 application.yaml worker.yaml + appcfg.py update -A your-app-id -V 1 app.yaml worker.yaml These samples are used on the following documentation pages: