mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-22 08:15:35 +01:00
Fix /health
endpoint when OTEL is configured (#33362)
This commit is contained in:
parent
32184e3f04
commit
22813dbc6e
1 changed files with 1 additions and 4 deletions
|
@ -86,10 +86,7 @@ if ENV.keys.any? { |name| name.match?(/OTEL_.*_ENDPOINT/) }
|
|||
def call(env)
|
||||
span = OpenTelemetry::Trace.current_span
|
||||
|
||||
unless span.recording?
|
||||
@app.call(env)
|
||||
return
|
||||
end
|
||||
return @app.call(env) unless span.recording?
|
||||
|
||||
span_id = span.context.hex_span_id
|
||||
trace_id = span.context.hex_trace_id
|
||||
|
|
Loading…
Reference in a new issue