From 0080139d6a1f0f77db66bf6789916699b5e3616b Mon Sep 17 00:00:00 2001 From: Sarath Kaul Date: Thu, 9 Jan 2020 21:37:02 +0530 Subject: [PATCH] Task Name in Creating HTTP Task with Token --- tasks/create_http_task_with_token.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tasks/create_http_task_with_token.py b/tasks/create_http_task_with_token.py index 0c976913ceef..3205c18c6519 100644 --- a/tasks/create_http_task_with_token.py +++ b/tasks/create_http_task_with_token.py @@ -23,7 +23,8 @@ def create_http_task(project, url, service_account_email, payload=None, - in_seconds=None): + in_seconds=None, + task_name=None): # [START cloud_tasks_create_http_task_with_token] """Create a task for a given queue with an arbitrary payload.""" @@ -72,6 +73,10 @@ def create_http_task(project, # Add the timestamp to the tasks. task['schedule_time'] = timestamp + if task_name is not None: + # Add the name to tasks. + task['name'] = task_name + # Use the client to build and send the task. response = client.create_task(parent, task)