From 2f1b36a10a7e473f5a87ac3fb34bb2acf036de53 Mon Sep 17 00:00:00 2001 From: s1gr1d Date: Thu, 2 Jan 2025 16:24:50 +0100 Subject: [PATCH] docs(node): Remove old occurrences of tracingHandler --- packages/aws-serverless/src/sdk.ts | 2 +- packages/core/src/types-hoist/samplingcontext.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/aws-serverless/src/sdk.ts b/packages/aws-serverless/src/sdk.ts index fc67aaa432ef..e170c4e48a3f 100644 --- a/packages/aws-serverless/src/sdk.ts +++ b/packages/aws-serverless/src/sdk.ts @@ -51,7 +51,7 @@ export interface WrapperOptions { captureAllSettledReasons: boolean; /** * Automatically trace all handler invocations. - * You may want to disable this if you use express within Lambda (use tracingHandler instead). + * You may want to disable this if you use express within Lambda. * @default true */ startTrace: boolean; diff --git a/packages/core/src/types-hoist/samplingcontext.ts b/packages/core/src/types-hoist/samplingcontext.ts index ecce87d7fbc7..b7657b68ba92 100644 --- a/packages/core/src/types-hoist/samplingcontext.ts +++ b/packages/core/src/types-hoist/samplingcontext.ts @@ -35,7 +35,7 @@ export interface SamplingContext extends CustomSamplingContext { location?: WorkerLocation; /** - * Object representing the incoming request to a node server. Passed by default when using the TracingHandler. + * Object representing the incoming request to a node server. */ request?: ExtractedNodeRequestData;