Conversation
Contributor
Kover Report
|
serras
reviewed
Nov 30, 2025
b1fd85a to
6106954
Compare
# Conflicts: # arrow-libs/resilience/arrow-resilience/build.gradle.kts # arrow-libs/resilience/arrow-resilience/src/commonMain/kotlin/arrow/resilience/Saga.kt
kyay10
commented
Dec 27, 2025
| action: suspend SagaActionStep.() -> A, | ||
| compensation: suspend (A) -> Unit | ||
| ): A = | ||
| guaranteeCase({ action(SagaActionStep) }) { res -> |
Collaborator
Author
There was a problem hiding this comment.
The logic of this change is:
- the
finalizerlambda doesn't call any coroutines code, soNonCancellableis pointless - when
resis null,finalizerdoes nothing, soguaranteeCasesimply catches and rethrows, which is pointless - when
resis not null,guaranteeCasesimply runs theaction, and then the finalizer here (and again,NonCancellableis irrelevant)
Hence, guaranteeCase's code can be simplified to the following (assumptions: finalizer returns immediately when res is null, and finalizer doesn't suspend):
private suspend fun <A> guaranteeCase(
fa: suspend () -> A,
finalizer: suspend (value: A?) -> Unit
): A {
val res = fa()
finalizer(res)
return res
}which is just also!
There is a nasty bug in that implementation as well, which is that compensation doesn't get scheduled for null values! This fixes that as well.
Obviously, this is code left for binary compatibility, so I can roll this back, but it felt nicer just so that I can remove guaranteeCase and runReleaseAndRethrow
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The error suppression logic now matches
resourceScope. Even thoughSagaBuilderis@PublishedApi, it was never used in anyinlinefunction, so it's technicallyprivate. For simplicity, I just deprecated it, but theoretically it could be removed