Skip to content

Commit 50b1ec3

Browse files
committed
chore: fix linter issues
1 parent dd735f1 commit 50b1ec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/connectionManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ export abstract class ConnectionManager {
112112
}
113113

114114
abstract connect(settings: ConnectionSettings): Promise<AnyConnectionState>;
115-
116115
abstract disconnect(): Promise<ConnectionStateDisconnected | ConnectionStateErrored>;
117116
}
118117

@@ -130,6 +129,7 @@ export class MCPConnectionManager extends ConnectionManager {
130129
super();
131130
this.bus = bus ?? new EventEmitter();
132131
this.bus.on("mongodb-oidc-plugin:auth-failed", this.onOidcAuthFailed.bind(this));
132+
// eslint-disable-next-line @typescript-eslint/no-misused-promises
133133
this.bus.on("mongodb-oidc-plugin:auth-succeeded", this.onOidcAuthSucceeded.bind(this));
134134
this.deviceId = deviceId;
135135
}

0 commit comments

Comments
 (0)