From 9f2ee4c4a8805163e1580b4c9b462b495632ff0f Mon Sep 17 00:00:00 2001 From: Clinton Blackburn Date: Wed, 3 Dec 2025 18:59:40 -0800 Subject: [PATCH] Corrected docstring for OtelCollectorExporter Removed the incorrect reference to the `OTEL_EXPORTER_OTLP_ENDPOINT` environment variable. Fixes #1854 --- packages/worker/src/runtime-options.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/worker/src/runtime-options.ts b/packages/worker/src/runtime-options.ts index d38db5a87..2988e5bd2 100644 --- a/packages/worker/src/runtime-options.ts +++ b/packages/worker/src/runtime-options.ts @@ -231,7 +231,6 @@ export interface OtelCollectorExporter { * * @format Starts with "grpc://" or "http://" for an unsecured connection (typical), * or "grpcs://" or "https://" for a TLS connection. - * @note The `OTEL_EXPORTER_OTLP_ENDPOINT` environment variable, if set, will override this property. */ url: string;