article update automation #4

Merged
Hare merged 7 commits from develop into master 2024-09-03 05:14:12 +09:00
Showing only changes of commit 4fb912cbf9 - Show all commits

View File

@ -5,7 +5,7 @@ export class Postgres {
client: pg.PoolClient | null = null;
public static async new(pool: pg.Pool) {
const pg = new Postgres();
pg.client = await getConnection().connect();
pg.client = await pool.connect();
return pg;
}