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

update Task class to support callbacks #38

Closed
Closed
Changes from all 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
6 changes: 6 additions & 0 deletions tes/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,12 @@ class Task(Base):
description = attrib(
default=None, converter=strconv, validator=optional(instance_of(str))
)

# This feature is not yet added to the TES specification
# To be done in a future release (probably 1.2)
callback_url = attrib(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe add a comment that this feature is for something that will be added into the TES specification in the future. Probably in version 1.2

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure

default=None, converter=strconv, validator=optional(instance_of(str))
)
inputs = attrib(
default=None, validator=optional(list_of(Input))
)
Expand Down