From d2aebb706ad2b467ef579bf0c1cac8332438237c Mon Sep 17 00:00:00 2001 From: sant0s <919197+sant0s@users.noreply.github.com> Date: Mon, 20 Jul 2026 14:07:26 +0100 Subject: [PATCH] Update events.adoc Simplify text. Signed-off-by: sant0s <919197+sant0s@users.noreply.github.com> --- src/docs/antora/modules/ROOT/pages/events.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/antora/modules/ROOT/pages/events.adoc b/src/docs/antora/modules/ROOT/pages/events.adoc index 826d8502e..50dc620e5 100644 --- a/src/docs/antora/modules/ROOT/pages/events.adoc +++ b/src/docs/antora/modules/ROOT/pages/events.adoc @@ -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.