Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/database/connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const pool = new Pool({
password: process.env.DB_PASSWORD,

// Pool configuration - DO NOT MODIFY without load testing
max: 20, // Maximum connections (see DECISION-DB-001)
max: 50, // CHANGED: Increased pool size for higher load
min: 5, // Minimum connections
idleTimeoutMillis: 30000,
connectionTimeoutMillis: 2000,
Expand Down
Loading