10000 fix(node): Fix default `transactionNamingScheme` value in `RequestDat… · vaind/sentry-javascript@21c64ac · GitHub
[go: up one dir, main page]

Skip to content

Commit 21c64ac

Browse files
authored
fix(node): Fix default transactionNamingScheme value in RequestData integration (getsentry#6009)
This fixes the casing of the default `transactionNamingScheme` value in the `RequestData` integration so that the default value is one of the accepted values.
1 parent ee3eedc commit 21c64ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/node/src/integrations/requestdata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const DEFAULT_OPTIONS = {
4444
email: true,
4545
},
4646
},
47-
transactionNamingScheme: 'methodpath',
47+
transactionNamingScheme: 'methodPath',
4848
};
4949

5050
/** Add data about a request to an event. Primarily for use in Node-based SDKs, but included in `@sentry/integrations`

0 commit comments

Comments
 (0)
0