Skip to content

Commit 893c3d6

Browse files
authored
Refresh refcache and fix broken external links into Java API (#2954)
1 parent 1b88cc1 commit 893c3d6

File tree

4 files changed

+195
-270
lines changed

4 files changed

+195
-270
lines changed

.htmltest.yml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ IgnoreURLs: # list of regexs of paths or URLs to be ignored
2020

2121
- ^https://(www\.)?linkedin\.com\b # Always yields 999 Request Denied
2222
- ^https://(www\.)?mvnrepository\.com # Always yields 403 Forbidden
23+
- ^https://twitter.com # Always yields 403 Forbidden
2324

2425
# Ignore Docsy-generated GitHub links:
2526
- ^https?://github\.com/.*?/.*?/(new|edit)/ # view-page, edit-source etc

content/en/community/end-user/otel-in-practice.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ in the
2323
of the [CNCF Slack](https://slack.cncf.io).
2424

2525
Join the
26-
[OpenTelemetry in Practice Meetup Group](https://meetup.com/opentelemetry-in-practice-meetup-group)
26+
[OpenTelemetry in Practice Meetup Group](https://www.meetup.com/opentelemetry-in-practice-meetup-group/)
2727
to get invited to our next talk!

content/en/docs/instrumentation/java/automatic/annotations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ types listed below, then the span will not be ended until the future completes.
6666
- [java.util.concurrent.CompletionStage](https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletionStage.html)
6767
- [com.google.common.util.concurrent.ListenableFuture](https://guava.dev/releases/10.0/api/docs/com/google/common/util/concurrent/ListenableFuture.html)
6868
- [org.reactivestreams.Publisher](https://www.reactive-streams.org/reactive-streams-1.0.1-javadoc/org/reactivestreams/Publisher.html)
69-
- [reactor.core.publisher.Mono](https://projectreactor.io/docs/core/3.1.0.RELEASE/api/reactor/core/publisher/Mono.html)
70-
- [reactor.core.publisher.Flux](https://projectreactor.io/docs/core/3.1.0.RELEASE/api/reactor/core/publisher/Flux.html)
69+
- [reactor.core.publisher.Mono](https://projectreactor.io/docs/core/release/api/reactor/core/publisher/Mono.html)
70+
- [reactor.core.publisher.Flux](https://projectreactor.io/docs/core/release/api/reactor/core/publisher/Flux.html)
7171
- [io.reactivex.Completable](https://reactivex.io/RxJava/2.x/javadoc/index.html?io/reactivex/Completable.html)
7272
- [io.reactivex.Maybe](https://reactivex.io/RxJava/2.x/javadoc/index.html?io/reactivex/Maybe.html)
7373
- [io.reactivex.Single](https://reactivex.io/RxJava/2.x/javadoc/index.html?io/reactivex/Single.html)

0 commit comments

Comments
 (0)