Skip to content

Commit 3ceae73

Browse files
committed
rebase and fixup
1 parent 82c76e6 commit 3ceae73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/Observation/Sources/Observation/Observations.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,11 @@ public struct Observations<Element: Sendable, Failure: Error>: AsyncSequence, Se
236236
// back to the trailing edges of the mutations. In short, this enables the transactionality bounded by the
237237
// isolation of the mutation.
238238
await withTaskCancellationHandler(operation: {
239-
await State.willChange(isolation: iterationIsolation, state: state, id: id)
239+
await State.willChange(state: state, id: id)
240240
}, onCancel: {
241241
// ensure to clean out our continuation uon cancellation
242242
State.cancel(state, id: id)
243-
}, isolation: iterationIsolation)
243+
})
244244
return try await trackEmission(isolation: iterationIsolation, state: state, id: id)
245245
}
246246
} catch {

0 commit comments

Comments
 (0)