Skip to content

Commit

Permalink
Merge pull request #31 from Kpoke/fix/knexfile_max_pool
Browse files Browse the repository at this point in the history
fix/knexfile max pool
  • Loading branch information
Kpoke committed Jul 10, 2022
2 parents c12f9e7 + 7575b51 commit 2be4036
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 2be4036

Please sign in to comment.