Skip to content

Commit

Permalink
Fix broken link in spec (#635)
Browse files Browse the repository at this point in the history
* Fail build for internal broken links

* Fix broken link
  • Loading branch information
Azquelt authored Jun 27, 2024
1 parent 48c90e7 commit 38b12f6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions spec/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,20 @@
<packaging>pom</packaging>
<name>MicroProfile Fault Tolerance Specification</name>

<build>
<plugins>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<configuration>
<logHandler>
<failIf>
<severity>INFO</severity> <!-- Fail on invalid internal references -->
</failIf>
</logHandler>
</configuration>
</plugin>
</plugins>
</build>

</project>
4 changes: 2 additions & 2 deletions spec/src/main/asciidoc/release_notes.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ No.
- Work with MicroProfile Telemetry Metrics (link:https://github.com/eclipse/microprofile-fault-tolerance/issues/622[#622])

=== Other Changes
- Removed use of unmanaged threads in TCK (link:https://github.com/eclipse/microprofile-fault-tolerance/issues/634[#634])
- Removed unmanaged threads in TCK (link:https://github.com/eclipse/microprofile-fault-tolerance/issues/634[#634])

[[release_notes_40]]
== Release Notes for MicroProfile Fault Tolerance 4.0
Expand Down Expand Up @@ -69,7 +69,7 @@ In addition, metrics have moved from the `application:` scope to the `base:` sco
Old metric:: `application:ft.<name>.timeout.callsTimedOut.total`
New metric:: `base:ft.timeout.calls.total{method="<name>", timedOut="true"}`

These changes mean that existing dashboards and queries which use metrics provided by MicroProfile Fault Tolerance will need to be updated to use the new metrics listed in <<Integration with MicroProfile Metrics>>.
These changes mean that existing dashboards and queries which use metrics provided by MicroProfile Fault Tolerance will need to be updated to use the new metrics listed in <<Integration with MicroProfile Metrics and MicroProfile Telemetry>>.

==== Lifecycle of circuit breakers and bulkheads is now specified

Expand Down

0 comments on commit 38b12f6

Please sign in to comment.