diff --git a/docs/sdk/server-side-sdks/node/node-gettingstarted.md b/docs/sdk/server-side-sdks/node/node-gettingstarted.md index eb0d8715..1ee34b0b 100644 --- a/docs/sdk/server-side-sdks/node/node-gettingstarted.md +++ b/docs/sdk/server-side-sdks/node/node-gettingstarted.md @@ -70,4 +70,4 @@ initializeDevCycle('', { | flushEventQueueSize | Number | Controls the maximum size the event queue can grow to until a flush is forced. Defaults to `1000`. | | maxEventQueueSize | Number | Controls the maximum size the event queue can grow to until events are dropped. Defaults to `2000`. | | apiProxyURL | String | Allows the SDK to communicate with a proxy of DevCycle bucketing API / client SDK API. | -| disableRealtimeUpdates | Boolean | Disables the usage of realtime updates SSE connections for DevCycle, will revert to polling against the config CDN. | +| disableRealTimeUpdates | Boolean | Disables the usage of realtime updates SSE connections for DevCycle, will revert to polling against the config CDN. | diff --git a/docs/sdk/server-side-sdks/node/node-usage.md b/docs/sdk/server-side-sdks/node/node-usage.md index e683798e..c080c625 100644 --- a/docs/sdk/server-side-sdks/node/node-usage.md +++ b/docs/sdk/server-side-sdks/node/node-usage.md @@ -171,13 +171,13 @@ This feature reduces the number of polling requests that are made to the DevCycl use a long-lived HTTP connection (Server Sent Events) to receive updates when there is a new config available. This reduces outbound network traffic, as well as optimizes the SDK for efficiency. -To disable realtime updates, pass in the `disableRealtimeUpdates` option to the SDK initialization: +To disable realtime updates, pass in the `disableRealTimeUpdates` option to the SDK initialization: ```typescript import { initializeDevCycle } from '@devcycle/nodejs-server-sdk' const devcycleClient = initializeDevCycle('', { - disableRealtimeUpdates: true, + disableRealTimeUpdates: true, }) ```