Skip to content

Commit

Permalink
Fix sporadic markdown link check failures (open-telemetry#2486)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored Apr 12, 2022
1 parent 4dbb15c commit 485ba00
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions .markdown_link_check_config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"ignorePatterns": [
{
"pattern": "^https://github\\.com"
}
{
"pattern": "^https://github\\.com/open-telemetry/opentelemetry-specification/(issues|pull)"
}
],
"retryOn429": true,
"aliveStatusCodes": [
200,
403
]
}
2 changes: 1 addition & 1 deletion specification/compatibility/opentracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ The `Add Event`'s `name` parameter MUST be the value with the `event` key in
the pair set, or else fallback to use the `log` literal string.

If pair set contains an `event=error` entry, the values MUST be
[mapped](/~https://github.com/opentracing/specification/blob/master/semantic_conventionsmd#log-fields-table)
[mapped](/~https://github.com/opentracing/specification/blob/master/semantic_conventions.md#log-fields-table)
to an `Event` with the conventions outlined in the
[Exception semantic conventions](../trace/semantic_conventions/exceptions.md) document:

Expand Down
2 changes: 1 addition & 1 deletion specification/trace/sdk_exporters/jaeger.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Jaeger accepts spans in two formats:
See also:

* [Jaeger APIs](https://www.jaegertracing.io/docs/latest/apis/)
* [Reference implementation of this translation in the OpenTelemetry Collector](/~https://github.com/open-telemetry/opentelemetry-collector/blob/master/translator/trace/jaeger/traces_to_jaegerproto.go)
* [Reference implementation of this translation in the OpenTelemetry Collector Contrib repository](/~https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/pkg/translator/jaeger/traces_to_jaegerproto.go)

## Summary

Expand Down

0 comments on commit 485ba00

Please sign in to comment.