You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2018/12/07 12:42:26 UTC

[04/18] tomee git commit: Update README.md

Update README.md

Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/728c6124
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/728c6124
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/728c6124

Branch: refs/heads/master
Commit: 728c612429ead3711d5a3608e73ba655213cec23
Parents: b45ecda
Author: Jose Henrique Ventura <ja...@gmail.com>
Authored: Mon Dec 3 21:41:26 2018 +0000
Committer: GitHub <no...@github.com>
Committed: Mon Dec 3 21:41:26 2018 +0000

----------------------------------------------------------------------
 examples/mp-faulttolerance-retry/README.md | 26 +++++++++----------------
 1 file changed, 9 insertions(+), 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/728c6124/examples/mp-faulttolerance-retry/README.md
----------------------------------------------------------------------
diff --git a/examples/mp-faulttolerance-retry/README.md b/examples/mp-faulttolerance-retry/README.md
index 3c2c66f..aa719bb 100644
--- a/examples/mp-faulttolerance-retry/README.md
+++ b/examples/mp-faulttolerance-retry/README.md
@@ -6,23 +6,15 @@ Microprofile Fault Tolerance has a feature called Retry that can be used to reco
 
 The Retry policy allows to configure :
 
-**maxRetries**: the maximum retries 
-
-**delay**: delays between each retry
-
-**delayUnit**: the delay unit
-
-**maxDuration**: maximum duration to perform the retry for.
-
-**durationUnit**: duration unit
-
-**jitter:** the random vary of retry delays
-
-**jitterDelayUnit:** the jitter unit
-
-**retryOn:** specify the failures to retry on
-
-**abortOn:** specify the failures to abort on
+* **maxRetries**: the maximum retries 
+* **delay**: delays between each retry
+* **delayUnit**: the delay unit
+* **maxDuration**: maximum duration to perform the retry for.
+* **durationUnit**: duration unit
+* **jitter:** the random vary of retry delays
+* **jitterDelayUnit:** the jitter unit
+* **retryOn:** specify the failures to retry on
+* **abortOn:** specify the failures to abort on
 
 To use this feature you can annotate a class and/or a method with the @Retry annotation. 
 Check the [specification](http://download.eclipse.org/microprofile/microprofile-fault-tolerance-1.1/microprofile-fault-tolerance-spec.html) for more details.