Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task Name in Creating HTTP Task with Token #2700

Merged
merged 8 commits into from
Jan 14, 2020
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tasks/create_http_task_with_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""

Expand Down Expand Up @@ -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)

Expand Down