Skip to content

Commit 267a74d

Browse files
authored
Update region tag for Cloud Tasks snippets (#2350)
1 parent e1d66d8 commit 267a74d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appengine/flexible/tasks/snippets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,14 +221,14 @@ def pause_queue(project, location, queue):
221221

222222

223223
def delete_queue(project, location, queue):
224+
# [START taskqueues_deleting_queues]
224225
client = tasks.CloudTasksClient()
225226

226227
# TODO(developer): Uncomment these lines and replace with your values.
227228
# project = 'my-project-id'
228229
# location = 'us- central1'
229230
# queue = 'queue1'
230231

231-
# [START taskqueues_deleting_queues]
232232
queue_path = client.queue_path(project, location, queue)
233233
response = client.delete_queue(queue_path)
234234
# [END taskqueues_deleting_queues]

0 commit comments

Comments
 (0)