Fixed URLs and added a note about MP config.

Signed-off-by: Santiago Pericasgeertsen <santiago.pericasgeertsen@oracle.com>
This commit is contained in:
Santiago Pericasgeertsen
2020-09-15 14:16:41 -04:00
parent 9ccf4bc9ba
commit 00beda0d67

View File

@@ -22,8 +22,8 @@
:description: Fault Tolerance Introduction
:keywords: helidon, webserver, faulttolerance, mp
:fault-tolerance-spec-url: https://github.com/eclipse/microprofile-fault-tolerance
:scheduled-executor-config: https://helidon.io/docs/v2/apidocs/io.helidon.common.configurable/io/helidon/common/configurable/ScheduledThreadPoolSupplier.Builder.html#config(io.helidon.config.Config)
:executor-config: https://helidon.io/docs/v2/apidocs/io.helidon.common.configurable/io/helidon/common/configurable/ThreadPoolSupplier.Builder.html#config(io.helidon.config.Config)
:scheduled-executor-config: {javadoc-base-url}io.helidon.common.configurable/io/helidon/common/configurable/ScheduledThreadPoolSupplier.Builder.html#config(io.helidon.config.Config)
:executor-config: {javadoc-base-url}io.helidon.common.configurable/io/helidon/common/configurable/ThreadPoolSupplier.Builder.html#config(io.helidon.config.Config)
Fault Tolerance is part of the MicroProfile set of {fault-tolerance-spec-url}[specifications]. This API defines mostly
annotations that improve application robustness by providing support to conveniently handle
@@ -52,6 +52,9 @@ scheduled-executor:
core-pool-size: 8
----
NOTE: There is currently _no support_ to configure these executor properties via a
`microprofile-config.properties` file.
The complete set of properties available to configure these executors is in
{executor-config}[ServerThreadPoolSupplier] and
{scheduled-executor-config}[ScheduledThreadPoolSupplier].