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 d872278 commit aeb7a5fCopy full SHA for aeb7a5f
packages/grpc-js/src/transport.ts
@@ -724,7 +724,7 @@ export class Http2SubchannelConnector implements SubchannelConnector {
724
});
725
726
// Send WINDOW_UPDATE now to avoid 65 KB start-window stall.
727
- const defaultWin = http2.getDefaultSettings().initialWindowSize; // 65 535 B
+ const defaultWin = http2.getDefaultSettings().initialWindowSize ?? 65535; // 65 535 B
728
const connWin = options[
729
'grpc-node.connection_flow_control_window'
730
] as number | undefined;
0 commit comments