Skip to content

Commit

Permalink
fix(node): Fix default transactionNamingScheme value in `RequestDat…
Browse files Browse the repository at this point in the history
…a` integration (#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.
  • Loading branch information
lobsterkatie committed Oct 21, 2022
1 parent ee3eedc commit 21c64ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/node/src/integrations/requestdata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const DEFAULT_OPTIONS = {
email: true,
},
},
transactionNamingScheme: 'methodpath',
transactionNamingScheme: 'methodPath',
};

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

0 comments on commit 21c64ac

Please sign in to comment.