8000 Convert attempts to int32 for consistency by alexshtin · Pull Request #85 · temporalio/api · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Convert attempts to int32 for consistency #85

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

Merged
merged 1 commit into from
Jul 31, 2020
Merged
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
2 changes: 1 addition & 1 deletion temporal/api/history/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ message WorkflowTaskScheduledEventAttributes {
// (-- api-linter: core::0140::prepositions=disabled
// aip.dev/not-precedent: "to" is used to indicate interval. --)
google.protobuf.Duration start_to_close_timeout = 2 [(gogoproto.stdduration) = true];
int64 attempt = 3;
int32 attempt = 3;
}

message WorkflowTaskStartedEventAttributes {
Expand Down
2 changes: 1 addition & 1 deletion temporal/api/workflowservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ message PollWorkflowTaskQueueResponse {
temporal.api.common.v1.WorkflowType workflow_type = 3;
int64 previous_started_event_id = 4;
int64 started_event_id = 5;
int64 attempt = 6;
int32 attempt = 6;
int64 backlog_count_hint = 7;
temporal.api.history.v1.History history = 8;
bytes next_page_token = 9;
Expand Down
0