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.
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
[EXPOSED-46] Add a possibility to set a delay for the repetition attempts #1742
[EXPOSED-46] Add a possibility to set a delay for the repetition attempts #1742
Changes from all commits
b14887a
860589f
57cd676
92b795e
ec63e6b
ef5e627
4411d68
6c636f6
aecb46a
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Could you tell me how it will work with
newSuspendTransaction
?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 tried to do some tests using newSuspendedTransaction with the repetition delay. Here's what I found :
Is there something else I should check?
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.
As a user, I would expect that both
transaction
andnewSuspendTransaction
had the same retry policyThere 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.
Hi. Sorry I couldn't find the time to check your response until today.
I don't have any experience working with coroutines but I tried to implement the same retry policy in
newSuspendTransaction
as the one intransaction
.Unfortunately, I couldn't make it work : When implementing the while loop to handle retries, I got the following error in
suspendedTransactionAsyncInternal
, Which I don't really understand:I didn't pursue this further because for me the scope of this pull request is to be able to set a delay whenever I have a repetition attempt. Which is currently only handled in
transaction
.I think adding repetition handling in newSuspendTransaction can be added in new separate issue. What do you think?
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.
Sure, let's move it to the separate issue