Skip to content

Commit e7f0eef

Browse files
authored
Merge branch 'main' into gagik/status-6.0.3-clusters
2 parents fa4f17f + 4eccc32 commit e7f0eef

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

THIRD_PARTY_NOTICES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The following third-party software is used by and included in **mongosh**.
2-
This document was automatically generated on Sun Oct 13 2024.
2+
This document was automatically generated on Tue Oct 15 2024.
33

44
## List of dependencies
55

packages/cli-repl/src/cli-repl.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1017,12 +1017,11 @@ export class CliRepl implements MongoshIOProvider {
10171017
}
10181018

10191019
async isTlsKeyFilePasswordMissingURI(
1020-
searchParams: ReturnType<
1021-
typeof ConnectionString.prototype.typedSearchParams<DevtoolsConnectOptions>
1022-
>
1020+
searchParams: unknown
10231021
): Promise<boolean> {
1024-
const tlsCertificateKeyFile = searchParams.get('tlsCertificateKeyFile');
1025-
const tlsCertificateKeyFilePassword = searchParams.get(
1022+
const searchMap = searchParams as Map<keyof DevtoolsConnectOptions, string>;
1023+
const tlsCertificateKeyFile = searchMap.get('tlsCertificateKeyFile');
1024+
const tlsCertificateKeyFilePassword = searchMap.get(
10261025
'tlsCertificateKeyFilePassword'
10271026
);
10281027

0 commit comments

Comments
 (0)