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 06a7ea8 commit 806382fCopy full SHA for 806382f
src/common/connectionManager.ts
@@ -171,6 +171,9 @@ export class ConnectionManager extends EventEmitter<ConnectionManagerEvents> {
171
return "ldap";
172
}
173
break;
174
+ // default should catch also null, but eslint complains
175
+ // about it.
176
+ case null:
177
default:
178
return "scram";
179
src/tools/mongodb/connect/connect.ts
@@ -7,7 +7,6 @@ import { UserConfig } from "../../../common/config.js";
7
import { Telemetry } from "../../../telemetry/telemetry.js";
8
import { Session } from "../../../common/session.js";
9
import { Server } from "../../../server.js";
10
-import logger from "../../../common/logger.js";
11
12
const disconnectedSchema = z
13
.object({
0 commit comments