File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
documentation/modules/ROOT/pages Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ The transactional processing has been the cornerstone of many business applicati
6969However, in most cases, the transactional processing isn't the best fit for real-world processes.
7070
7171In our example, when the ride finishes, that's a real-world situation.
72- However, the example uses the `+@Transational +` annotation, and operate on number of unrelated data.
72+ However, the example uses the `+@Transactional +` annotation, and operate on number of unrelated data.
7373This means that when one of those operations fails, the whole processing will be rolled back.
7474In effect, the end-user will receive a nasty error message.
7575
@@ -645,7 +645,7 @@ spec:
645645 retry: 10 # <3>
646646----
647647
648- <1> The `+backoffDelay+` is the delay between retries, and us use `+200ms+` initially .
648+ <1> The `+backoffDelay+` is the delay between retries, and we use `+200ms+` in this example .
649649<2> The `+backoffPolicy+` is set to `+exponential+`, which means that the delay will be doubled each time.
650650<3> The `+retry+` is the number of times we retry before giving up.
651651
You can’t perform that action at this time.
0 commit comments