Skip to content

Commit

Permalink
rename field
Browse files Browse the repository at this point in the history
  • Loading branch information
ychebotarev committed Oct 9, 2024
1 parent 43e6362 commit ef9a9bf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -8912,10 +8912,10 @@
"type": "string",
"description": "The time activity will wait until the next retry.\nIf activity is currently running it will be next retry interval if activity failed.\nIf activity is currently waiting it will be current retry interval.\nIf there will be no retry it will be null."
},
"lastFailureTime": {
"lastAttemptCompleteTime": {
"type": "string",
"format": "date-time",
"description": "The time when the last activity attempt failed. If there was no failure then it will be null."
"description": "The time when the last activity attempt was completed. If activity has not been completed yet then it will be null."
},
"nextAttemptScheduleTime": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6560,9 +6560,9 @@ components:
If activity is currently running it will be next retry interval if activity failed.
If activity is currently waiting it will be current retry interval.
If there will be no retry it will be null.
lastFailureTime:
lastAttemptCompleteTime:
type: string
description: The time when the last activity attempt failed. If there was no failure then it will be null.
description: The time when the last activity attempt was completed. If activity has not been completed yet then it will be null.
format: date-time
nextAttemptScheduleTime:
type: string
Expand Down
4 changes: 2 additions & 2 deletions temporal/api/workflow/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ message PendingActivityInfo {
// If there will be no retry it will be null.
google.protobuf.Duration current_retry_interval = 16;

// The time when the last activity attempt failed. If there was no failure then it will be null.
google.protobuf.Timestamp last_failure_time = 17;
// The time when the last activity attempt was completed. If activity has not been completed yet then it will be null.
google.protobuf.Timestamp last_attempt_complete_time = 17;

// Next time when activity will be scheduled.
// If activity is currently scheduled or started it will be null.
Expand Down

0 comments on commit ef9a9bf

Please sign in to comment.