Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 0 additions & 8 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -13011,14 +13011,6 @@
"type": "string",
"description": "The identity of the client who initiated this request."
},
"resetAttempts": {
"type": "boolean",
"description": "Providing this flag will also reset the number of attempts."
},
"resetHeartbeat": {
"type": "boolean",
"description": "Providing this flag will also reset the heartbeat details."
},
"reason": {
"type": "string",
"description": "Reason to unpause the activity."
Expand Down
6 changes: 0 additions & 6 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18187,12 +18187,6 @@ components:
identity:
type: string
description: The identity of the client who initiated this request.
resetAttempts:
type: boolean
description: Providing this flag will also reset the number of attempts.
resetHeartbeat:
type: boolean
description: Providing this flag will also reset the heartbeat details.
reason:
type: string
description: Reason to unpause the activity.
Expand Down
7 changes: 2 additions & 5 deletions temporal/api/workflowservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2327,11 +2327,8 @@ message UnpauseActivityExecutionRequest {
// The identity of the client who initiated this request.
string identity = 5;

// Providing this flag will also reset the number of attempts.
bool reset_attempts = 6;

// Providing this flag will also reset the heartbeat details.
bool reset_heartbeat = 7;
reserved 6, 7;
reserved "reset_attempts", "reset_heartbeat";

// Reason to unpause the activity.
string reason = 8;
Expand Down
Loading