Skip to content

Commit

Permalink
Merge branch 'main' into gagik/aggregate-error
Browse files Browse the repository at this point in the history
  • Loading branch information
gagik authored Oct 15, 2024
2 parents f896fbd + 4eccc32 commit 27fd15d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion THIRD_PARTY_NOTICES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The following third-party software is used by and included in **mongosh**.
This document was automatically generated on Sun Oct 13 2024.
This document was automatically generated on Tue Oct 15 2024.

## List of dependencies

Expand Down
9 changes: 4 additions & 5 deletions packages/cli-repl/src/cli-repl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1017,12 +1017,11 @@ export class CliRepl implements MongoshIOProvider {
}

async isTlsKeyFilePasswordMissingURI(
searchParams: ReturnType<
typeof ConnectionString.prototype.typedSearchParams<DevtoolsConnectOptions>
>
searchParams: unknown
): Promise<boolean> {
const tlsCertificateKeyFile = searchParams.get('tlsCertificateKeyFile');
const tlsCertificateKeyFilePassword = searchParams.get(
const searchMap = searchParams as Map<keyof DevtoolsConnectOptions, string>;
const tlsCertificateKeyFile = searchMap.get('tlsCertificateKeyFile');
const tlsCertificateKeyFilePassword = searchMap.get(
'tlsCertificateKeyFilePassword'
);

Expand Down

0 comments on commit 27fd15d

Please sign in to comment.