File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ import { OAuthServerProvider } from './provider.js';
88import { OAuthMetadata , OAuthProtectedResourceMetadata } from '../../shared/auth.js' ;
99
1010// Check for dev mode flag that allows HTTP issuer URLs (for development/testing only)
11- const allowInsecureIssuerUrl = process . env . MCP_DANGEROUSLY_ALLOW_INSECURE_ISSUER_URL === 'true' || process . env . MCP_DANGEROUSLY_ALLOW_INSECURE_ISSUER_URL === '1' ;
11+ const allowInsecureIssuerUrl =
12+ process . env . MCP_DANGEROUSLY_ALLOW_INSECURE_ISSUER_URL === 'true' || process . env . MCP_DANGEROUSLY_ALLOW_INSECURE_ISSUER_URL === '1' ;
1213if ( allowInsecureIssuerUrl ) {
1314 // eslint-disable-next-line no-console
1415 console . warn ( 'MCP_DANGEROUSLY_ALLOW_INSECURE_ISSUER_URL is enabled - HTTP issuer URLs are allowed. Do not use in production.' ) ;
You can’t perform that action at this time.
0 commit comments