-
Notifications
You must be signed in to change notification settings - Fork 68
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
Add HandlerErrorRetryBehavior #551
Conversation
03f2e7b
to
d9c0992
Compare
temporal/api/nexus/v1/message.proto
Outdated
// HandlerErrorRetryBehavior allows handlers to explicity set the retry behavior of a HandlerError. If not specified, | ||
// retry behavior is determined from the error type. For example internal errors are not retryable by default unless | ||
// specified otherwise. | ||
enum HandlerErrorRetryBehavior { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be in enums
like all other enums in this project?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, you're right, I checked, all other enums are there. I don't love spreading related definitions out like that but I understand the argument for consistency.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I note this is merging to master
and not a feature branch. I trust the implementation and design is far enough along that we don't expect incompatible changes to this.
Yes, there is a corresponding server and Go SDK PR (Java is waiting on this too). |
No description provided.