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 e699e95 commit 365f5f2Copy full SHA for 365f5f2
packages/mongodb-runner/src/oidc.ts
@@ -23,7 +23,9 @@ if (process.env.RUN_OIDC_MOCK_PROVIDER !== undefined) {
23
});
24
res.writeHead(200);
25
res.end();
26
+ return;
27
}
28
+ return config.overrideRequestHandler?.(url, req, res);
29
},
30
31
debug('started OIDC mock provider with UUID', {
packages/oidc-mock-provider/src/cli-parser.ts
@@ -52,7 +52,7 @@ export function parseCLIArgs(
52
})
53
.option('skip-refresh-token', {
54
type: 'boolean',
55
- desc: 'Skip issuing ID tokens.',
+ desc: 'Skip issuing refresh tokens.',
56
57
.option('log-requests', {
58
alias: 'l',
0 commit comments