-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(data-service): share OIDC state with embedded mongosh COMPASS-6802…
… (#4419) This commit is sufficient to make OIDC connectivity work when using the connection string to set OIDC as the auth mechanism. Co-authored-by: Rhys <[email protected]>
- Loading branch information
Showing
11 changed files
with
410 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,5 @@ ignores: | |
- 'babel-plugin-istanbul' | ||
# recursive | ||
- 'mongodb-compass' | ||
# used as a resolve alias | ||
- 'jose' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env node | ||
/* eslint-disable */ | ||
'use strict'; | ||
const fetch = require('node-fetch'); | ||
|
||
// fetch() an URL and ignore the response body | ||
(async function () { | ||
(await fetch(process.argv[2])).body?.resume(); | ||
})().catch((err) => { | ||
process.nextTick(() => { | ||
throw err; | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.