Skip to content

Commit

Permalink
fix: fleet db poolMax to 15
Browse files Browse the repository at this point in the history
  • Loading branch information
TBonnin committed Jan 10, 2025
1 parent 1860f18 commit 5cfab41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/fleet/lib/db/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class DatabaseClient {
public url: string;
private config: knex.Knex.Config;

constructor({ url, schema, poolMax = 50 }: { url: string; schema: string; poolMax?: number }) {
constructor({ url, schema, poolMax = 15 }: { url: string; schema: string; poolMax?: number }) {
this.url = url;
this.schema = schema;
this.config = {
Expand Down

0 comments on commit 5cfab41

Please sign in to comment.