-
Notifications
You must be signed in to change notification settings - Fork 21
Added retry policy to activity info #341
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
maciejdudko
merged 2 commits into
temporalio:main
from
maciejdudko:activity-info-retry-policy
Sep 19, 2025
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule sdk-core
updated
20 files
+34 −32 | client/src/lib.rs | |
+34 −96 | client/src/raw.rs | |
+253 −0 | client/src/replaceable.rs | |
+9 −6 | client/src/retry.rs | |
+48 −32 | core/src/lib.rs | |
+5 −3 | core/src/protosext/mod.rs | |
+256 −108 | core/src/retry_logic.rs | |
+18 −18 | core/src/worker/activities/local_activities.rs | |
+51 −39 | core/src/worker/client.rs | |
+1 −1 | core/src/worker/client/mocks.rs | |
+8 −4 | core/src/worker/mod.rs | |
+13 −3 | sdk-core-protos/src/lib.rs | |
+55 −5 | tests/common/mod.rs | |
+4 −4 | tests/integ_tests/ephemeral_server_tests.rs | |
+304 −90 | tests/integ_tests/polling_tests.rs | |
+1 −1 | tests/integ_tests/update_tests.rs | |
+4 −4 | tests/integ_tests/worker_versioning_tests.rs | |
+4 −4 | tests/integ_tests/workflow_tests/activities.rs | |
+1 −1 | tests/main.rs | |
+7 −39 | tests/runner.rs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
In Python/.NET you chose to make this None/null
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 didn't put much thought to it before but I think non-null is better since it will never be null in practice (except for pre-1.28 servers due to a bug). .Net isn't merged yet, I plan on changing it there too. We might want to fix it in Python too.
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'm ok with that. I think it might be better to be null than inaccurate, but we're inaccurate with other parts like priority, so all good.