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 9e68873 commit 7121f27Copy full SHA for 7121f27
packages/grpc-js/src/channel-credentials.ts
@@ -200,7 +200,7 @@ class SecureChannelCredentialsImpl extends ChannelCredentials {
200
verifyOptions.checkServerIdentity;
201
}
202
203
- if (verifyOptions?.rejectUnauthorized) {
+ if (verifyOptions?.rejectUnauthorized !== undefined) {
204
this.connectionOptions.rejectUnauthorized =
205
verifyOptions.rejectUnauthorized;
206
0 commit comments