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

chore: added missing fields in tasks_fields.proto #452

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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
4 changes: 4 additions & 0 deletions Protos/V1/tasks_fields.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ enum TaskSummaryEnumField {
TASK_SUMMARY_ENUM_FIELD_RECEIVED_AT = 14; /** When the task is received by the agent. */
TASK_SUMMARY_ENUM_FIELD_ACQUIRED_AT = 15; /** When the task is acquired by the agent. */
TASK_SUMMARY_ENUM_FIELD_ERROR = 8; /** The error message. Only set if task have failed. */
TASK_SUMMARY_ENUM_FIELD_COUNT_PARENT_TASK_IDS = 17; /** Count the parent task IDs. A tasks can be a child of another task. */
TASK_SUMMARY_ENUM_FIELD_COUNT_DATA_DEPENDENCIES = 18; /** Count the data dependencies. A task have data dependencies. */
TASK_SUMMARY_ENUM_FIELD_COUNT_EXPECTED_OUTPUTS_IDS = 19; /** Count the expected output IDs. A task have expected output IDs. */
TASK_SUMMARY_ENUM_FIELD_COUNT_RETRY_OF_IDS = 20; /** Count the retry of IDs. When a task fail, retry will use these set of IDs. */
}

/**
Expand Down
Loading