-
Notifications
You must be signed in to change notification settings - Fork 0
cover sync/rollback scenarios #1
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
Changes from all commits
0ede781
cda7c15
1c28858
9be2b9a
b744b36
2fc1fc4
0f38809
1f99b00
cd38799
23d3a25
d84b5d7
6d6d352
d6c97ea
547dfac
a551294
f447e30
1a67754
9b7932f
d29f69a
dd5fb7b
3723462
73a7c2e
f5c640d
252b160
6e3f208
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
The implementation of retry logic lacks validation for the duration and factor values. It's important to ensure that these values are within a reasonable range to prevent potential issues such as excessively long retry intervals or overly aggressive retry escalation, which could impact application performance and resource usage.
Recommendation: Implement validation checks for
retryBackoffDuration,retryBackoffMaxDuration, andretryBackoffFactorto ensure they fall within expected limits. This could be done by adding a check after the flags are parsed or by using a custom flag parsing function that includes validation logic.