fix(mc-api): NODE_TLS_REJECT_UNAUTHORIZED=0 for self-signed cert
Build + Deploy / build-admin-compliance (push) Successful in 2m19s
Build + Deploy / build-backend-compliance (push) Successful in 3m39s
Build + Deploy / build-ai-sdk (push) Successful in 57s
Build + Deploy / build-developer-portal (push) Successful in 1m12s
Build + Deploy / build-tts (push) Successful in 1m44s
Build + Deploy / build-document-crawler (push) Successful in 44s
Build + Deploy / build-dsms-gateway (push) Successful in 30s
Build + Deploy / build-dsms-node (push) Successful in 17s
CI / branch-name (push) Has been skipped
CI / guardrail-integrity (push) Has been skipped
CI / loc-budget (push) Failing after 20s
CI / secret-scan (push) Has been skipped
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / nodejs-build (push) Successful in 3m0s
CI / dep-audit (push) Has been skipped
CI / sbom-scan (push) Has been skipped
CI / test-go (push) Successful in 44s
CI / test-python-backend (push) Successful in 40s
CI / test-python-document-crawler (push) Successful in 29s
CI / test-python-dsms-gateway (push) Successful in 23s
CI / validate-canonical-controls (push) Successful in 14s
Build + Deploy / trigger-orca (push) Successful in 3m13s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-05-11 20:56:38 +02:00
parent 0d0e705117
commit 90da26745b
@@ -1,14 +1,14 @@
import { NextRequest, NextResponse } from 'next/server' import { NextRequest, NextResponse } from 'next/server'
import { Pool } from 'pg' import { Pool } from 'pg'
const pool = new Pool({ // Disable SSL rejection for self-signed certs
connectionString: process.env.COMPLIANCE_DATABASE_URL || process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'
process.env.DATABASE_URL ||
'postgresql://breakpilot:breakpilot123@bp-core-postgres:5432/breakpilot_db', const dbUrl = process.env.COMPLIANCE_DATABASE_URL ||
ssl: process.env.COMPLIANCE_DATABASE_URL?.includes('sslmode=require') process.env.DATABASE_URL ||
? { rejectUnauthorized: false } 'postgresql://breakpilot:breakpilot123@bp-core-postgres:5432/breakpilot_db'
: false,
}) const pool = new Pool({ connectionString: dbUrl })
/** /**
* MC API that returns data in the same format as the canonical controls * MC API that returns data in the same format as the canonical controls