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 b2e6c41 commit 0c41534Copy full SHA for 0c41534
packages/sdk/server-node/src/LDClientNode.ts
@@ -45,10 +45,13 @@ class LDClientNode extends LDClientImpl implements LDClient {
45
}
46
47
48
+ const baseOptions = { ...options, logger };
49
+ delete baseOptions.plugins;
50
+
51
super(
52
sdkKey,
53
new NodePlatform({ ...options, logger }),
- { ...options, logger },
54
+ baseOptions,
55
{
56
onError: (err: Error) => {
57
if (emitter.listenerCount('error')) {
0 commit comments