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 b184da0 commit c61e183Copy full SHA for c61e183
packages/compass-shell/src/modules/runtime.js
@@ -63,6 +63,13 @@ function reduceSetupRuntime(state, action) {
63
delete connection.options.useUnifiedTopology;
64
delete connection.options.connectWithNoPrimary;
65
delete connection.options.useNewUrlParser;
66
+ // `true` is not a valid tls checkServerIdentity option that seems to break
67
+ // driver 4
68
+ //
69
+ // TODO(NODE-3061): Remove when fixed on driver side
70
+ if (connection.options.checkServerIdentity === true) {
71
+ delete connection.options.checkServerIdentity;
72
+ }
73
}
74
75
const runtime = shouldUseNewRuntime
0 commit comments