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:50 +01:00 committed by GitHub
parent 2e3a75a90f
commit d4d01996d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ This is the sequence of interactions:
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.
4. The application receives a success response after the transaction commits.
At this point, the application can continue, knowing state is saved and the event intent is guaranteed.
5. Background subscriber reads the intent message.