We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d3355 commit d7d14d5Copy full SHA for d7d14d5
packages/node/src/client.ts
@@ -20,7 +20,7 @@ export class NodeClient extends BaseClient<NodeOptions> {
20
* Creates a new Node SDK instance.
21
* @param options Configuration options for this SDK.
22
*/
23
- public constructor(options: NodeOptions, transport: Transport, newTransport?: NewTransport) {
+ public constructor(options: NodeOptions, transport: NewTransport) {
24
options._metadata = options._metadata || {};
25
options._metadata.sdk = options._metadata.sdk || {
26
name: 'sentry.javascript.node',
@@ -33,7 +33,7 @@ export class NodeClient extends BaseClient<NodeOptions> {
33
version: SDK_VERSION,
34
};
35
36
- super(options, transport, newTransport);
+ super(options, transport);
37
}
38
39
/**
0 commit comments