Skip to content

Commit

Permalink
fix: revert db connection limit, whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
sebald committed Jul 3, 2024
1 parent 6125b07 commit 110c9a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/db/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ export const pool = createPool({
user: process.env.DATABASE_USERNAME,
password: process.env.DATABASE_PASSWORD,
database: 'main',
// maxIdle: 1,
// connectionLimit: 1,
maxIdle: 1,
connectionLimit: 1,
});

// Database
Expand Down

0 comments on commit 110c9a7

Please sign in to comment.