Skip to content

Commit

Permalink
address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
hai719 committed Dec 4, 2024
1 parent e5bc2ed commit e9b2dbe
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -10860,10 +10860,11 @@
"RESET_REAPPLY_EXCLUDE_TYPE_UNSPECIFIED",
"RESET_REAPPLY_EXCLUDE_TYPE_SIGNAL",
"RESET_REAPPLY_EXCLUDE_TYPE_UPDATE",
"RESET_REAPPLY_EXCLUDE_TYPE_NEXUS"
"RESET_REAPPLY_EXCLUDE_TYPE_NEXUS",
"RESET_REAPPLY_EXCLUDE_TYPE_CANCEL_REQUEST"
],
"default": "RESET_REAPPLY_EXCLUDE_TYPE_UNSPECIFIED",
"description": "Event types to exclude when reapplying events beyond the reset point.\n\n - RESET_REAPPLY_EXCLUDE_TYPE_SIGNAL: Exclude signals when reapplying events beyond the reset point.\n - RESET_REAPPLY_EXCLUDE_TYPE_UPDATE: Exclude updates when reapplying events beyond the reset point.\n - RESET_REAPPLY_EXCLUDE_TYPE_NEXUS: Exclude nexus events when reapplying events beyond the reset point."
"description": "Event types to exclude when reapplying events beyond the reset point.\n\n - RESET_REAPPLY_EXCLUDE_TYPE_SIGNAL: Exclude signals when reapplying events beyond the reset point.\n - RESET_REAPPLY_EXCLUDE_TYPE_UPDATE: Exclude updates when reapplying events beyond the reset point.\n - RESET_REAPPLY_EXCLUDE_TYPE_NEXUS: Exclude nexus events when reapplying events beyond the reset point.\n - RESET_REAPPLY_EXCLUDE_TYPE_CANCEL_REQUEST: Exclude cancel request events when reapplying events beyond the reset point."
},
"v1ResetReapplyType": {
"type": "string",
Expand Down
2 changes: 2 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8163,6 +8163,7 @@ components:
- RESET_REAPPLY_EXCLUDE_TYPE_SIGNAL
- RESET_REAPPLY_EXCLUDE_TYPE_UPDATE
- RESET_REAPPLY_EXCLUDE_TYPE_NEXUS
- RESET_REAPPLY_EXCLUDE_TYPE_CANCEL_REQUEST
type: string
format: enum
description: Event types not to be reapplied
Expand Down Expand Up @@ -8249,6 +8250,7 @@ components:
- RESET_REAPPLY_EXCLUDE_TYPE_SIGNAL
- RESET_REAPPLY_EXCLUDE_TYPE_UPDATE
- RESET_REAPPLY_EXCLUDE_TYPE_NEXUS
- RESET_REAPPLY_EXCLUDE_TYPE_CANCEL_REQUEST
type: string
format: enum
description: Event types not to be reapplied
Expand Down
4 changes: 2 additions & 2 deletions temporal/api/enums/v1/reset.proto
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ enum ResetReapplyExcludeType {
RESET_REAPPLY_EXCLUDE_TYPE_UPDATE = 2;
// Exclude nexus events when reapplying events beyond the reset point.
RESET_REAPPLY_EXCLUDE_TYPE_NEXUS = 3;
reserved 4;
reserved "RESET_REAPPLY_EXCLUDE_TYPE_CANCEL_REQUEST";
// Exclude cancel request events when reapplying events beyond the reset point.
RESET_REAPPLY_EXCLUDE_TYPE_CANCEL_REQUEST = 4 [deprecated=true];
}

// Event types to include when reapplying events. Deprecated: applications
Expand Down

0 comments on commit e9b2dbe

Please sign in to comment.