tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
27
pulls
pipelines
increase max connections in pool
awarm.space
6 months ago
17e431e6
bae52e8e
+1
-1
1 changed file
expand all
collapse all
unified
split
supabase
pool.ts
+1
-1
supabase/pool.ts
···
5
export const pool = new Pool({
6
idleTimeoutMillis: 5000,
7
min: 1,
8
-
max: 20,
9
connectionString: process.env.DB_URL,
10
});
11
···
5
export const pool = new Pool({
6
idleTimeoutMillis: 5000,
7
min: 1,
8
+
max: 50,
9
connectionString: process.env.DB_URL,
10
});
11