Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/docs/antora/modules/ROOT/pages/events.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ RESUBMITTED -right-> PROCESSING : resubmission triggered
In addition to the status, each publication tracks:

* _Last resubmission date_ – When the publication was last resubmitted (if ever). Exposed via `EventPublication.getLastResubmissionDate()`.
* _Completion attempts_ – How often the listener was invoked (including the current run). Incremented when moving to `PROCESSING`, so a crash during the listener still leaves the attempt count updated. Exposed via `EventPublication.getCompletionAttempts()`.
* _Completion attempts_ – How often the listener was invoked (including the current run). Incremented when moving to `PROCESSING`, so a listener crash still leaves the attempt count updated. Exposed via `EventPublication.getCompletionAttempts()`.

These allow you to implement policies such as "resubmit only if failed longer than X" or "stop after N attempts" using the resubmission APIs and options.

Expand Down
Loading