Skip to content

Commit

Permalink
fix: update max pool
Browse files Browse the repository at this point in the history
  • Loading branch information
Kpoke authored Jul 11, 2022
1 parent 059a82a commit 3da2309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions knexfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
searchPath: [process.env.DATABASE_SCHEMA, 'public'],
pool: {
min: 1,
max: 100,
max: 10,
},
seeds: {
directory: path.join(__dirname, 'database', 'seeds'),
Expand All @@ -29,7 +29,7 @@ module.exports = {
searchPath: [process.env.DATABASE_SCHEMA, 'public'],
pool: {
min: 1,
max: 100,
max: 10,
},
seeds: {
directory: path.join(__dirname, 'database', 'seeds'),
Expand Down

0 comments on commit 3da2309

Please sign in to comment.