From 04bfe42b3c6ed8a6ae6a1bd30924c7f6ca6458c3 Mon Sep 17 00:00:00 2001 From: nenoNaninu Date: Sun, 24 Mar 2024 01:10:15 +0900 Subject: [PATCH] update comment --- .../Internal/HubActivitySource.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AspNetCore.SignalR.OpenTelemetry/Internal/HubActivitySource.cs b/src/AspNetCore.SignalR.OpenTelemetry/Internal/HubActivitySource.cs index 656b3d9..198780f 100644 --- a/src/AspNetCore.SignalR.OpenTelemetry/Internal/HubActivitySource.cs +++ b/src/AspNetCore.SignalR.OpenTelemetry/Internal/HubActivitySource.cs @@ -16,7 +16,7 @@ internal static class HubActivitySource // Activity.IsAllDataRequested is same as TelemetrySpan.IsRecording in OpenTelemetry API. // https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.7.0/src/OpenTelemetry.Api/Trace/TelemetrySpan.cs#L35-L36 - // https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk.md#sampling + // https://github.com/open-telemetry/opentelemetry-specification/blob/v1.31.0/specification/trace/sdk.md#sampling if (activity is null || activity.IsAllDataRequested == false) { return null;