From 1723ba33609e17214dcc16e80bdc55e777945b9e Mon Sep 17 00:00:00 2001 From: Averi Kitsch Date: Mon, 16 Jul 2018 13:01:26 -0700 Subject: [PATCH] update gcloud command --- appengine/cloudtasks/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appengine/cloudtasks/README.md b/appengine/cloudtasks/README.md index 95754b4391..ffacee89fe 100644 --- a/appengine/cloudtasks/README.md +++ b/appengine/cloudtasks/README.md @@ -45,7 +45,7 @@ Before you can run or deploy the sample, you need to do the following: To create a queue using the Cloud SDK, use the following gcloud command: - gcloud alpha tasks queues create-app-engine-queue my-appengine-queue + gcloud beta tasks queues create-app-engine-queue my-appengine-queue Note: A newly created queue will route to the default App Engine service and version unless configured to do otherwise. Read the online help for the @@ -95,14 +95,14 @@ export PROJECT_ID=my-project-id ``` Then the queue ID, as specified at queue creation time. Queue IDs already -created can be listed with `gcloud alpha tasks queues list`. +created can be listed with `gcloud beta tasks queues list`. ``` export QUEUE_ID=my-appengine-queue ``` And finally the location ID, which can be discovered with -`gcloud alpha tasks queues describe $QUEUE_ID`, with the location embedded in +`gcloud beta tasks queues describe $QUEUE_ID`, with the location embedded in the "name" value (for instance, if the name is "projects/my-project/locations/us-central1/queues/my-appengine-queue", then the location is "us-central1").