Skip to content

Commit

Permalink
fix: naming in protos
Browse files Browse the repository at this point in the history
  • Loading branch information
qdelamea-aneo committed Feb 9, 2024
1 parent 81593be commit 5f03e04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Protos/V1/tasks_common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ message TaskDetailed {
google.protobuf.Timestamp submitted_at = 12; /** The task submission date. */
google.protobuf.Timestamp received_at = 18; /** When the task is received by the agent. */
google.protobuf.Timestamp acquired_at = 19; /** When the task is acquired by the agent. */
google.protobuf.Timestamp fetched = 26; /** Task data retrevial end date. */
google.protobuf.Timestamp started_at = 25; /** The task start date. */
google.protobuf.Timestamp fetched_at = 25; /** Task data retrevial end date. */
google.protobuf.Timestamp started_at = 13; /** The task start date. */
google.protobuf.Timestamp processed_at = 24; /** The end of task processing date. */
google.protobuf.Timestamp ended_at = 14; /** The task end date. Also used when task failed. */
google.protobuf.Timestamp pod_ttl = 15; /** The pod TTL (Time To Live). */
Expand Down Expand Up @@ -89,7 +89,7 @@ message TaskSummary {
google.protobuf.Timestamp submitted_at = 12; /** The task submission date. */
google.protobuf.Timestamp received_at = 18; /** When the task is received by the agent. */
google.protobuf.Timestamp acquired_at = 19; /** When the task is acquired by the agent. */
google.protobuf.Timestamp fetched = 25; /** Task data retrevial end date. */
google.protobuf.Timestamp fetched_at = 25; /** Task data retrevial end date. */
google.protobuf.Timestamp started_at = 6; /** The task start date. */
google.protobuf.Timestamp processed_at = 23; /** The end of task processing date. */
google.protobuf.Timestamp ended_at = 7; /** The task end date. Also used when task failed. */
Expand Down
4 changes: 2 additions & 2 deletions Protos/V1/tasks_fields.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ enum TaskSummaryEnumField {
TASK_SUMMARY_ENUM_FIELD_POD_HOSTNAME = 13; /** The hostname of the container running the task. */
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_PROCESSED_AT = 19; /** When the task is processed by the agent. */
TASK_SUMMARY_ENUM_FIELD_PROCESSED_AT = 17; /** When the task is processed by the agent. */
TASK_SUMMARY_ENUM_FIELD_ERROR = 8; /** The error message. Only set if task have failed. */
TASK_SUMMARY_ENUM_FIELD_FETCHED_AT = 20; /** When task data are fetched by the agent. */
TASK_SUMMARY_ENUM_FIELD_FETCHED_AT = 19; /** When task data are fetched by the agent. */
}

/**
Expand Down

0 comments on commit 5f03e04

Please sign in to comment.