Skip to content

Commit c7c0eb7

Browse files
Fix prettier formatting
1 parent 65d41d5 commit c7c0eb7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/server/auth/router.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import { OAuthServerProvider } from './provider.js';
88
import { 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';
1213
if (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.');

0 commit comments

Comments
 (0)