Update daprdocs/content/en/developing-applications/building-blocks/state-management/howto-outbox.md

Co-authored-by: Mark Fussell <markfussell@gmail.com>
Signed-off-by: Bilgin Ibryam <bibryam@gmail.com>
This commit is contained in:
Bilgin Ibryam 2025-09-11 16:45:39 +01:00 committed by GitHub
parent 44f13a717d
commit 2e3a75a90f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ This is the sequence of interactions:
2. Dapr publishes an intent message with a unique transaction ID to an internal outbox topic.
This durable record ensures the event intent exists before any database commit happens.
3. State and a transaction marker are written atomically in the same state store.
3. The state and a transaction marker are written atomically in the same state store.
Both the business data and the marker are committed in the same transaction, preventing partial writes.
4. Application receives a success response after the commit.