Skip to content

Commit

Permalink
chore(backend): タイムアウトまでの秒数を10秒から1分に変更
Browse files Browse the repository at this point in the history
  • Loading branch information
taiyme committed Jun 5, 2024
1 parent 9a56a61 commit b714ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/postgres.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export function createPostgresDataSource(config: Config) {
password: config.db.pass,
database: config.db.db,
extra: {
statement_timeout: 1000 * 10,
statement_timeout: 1000 * 10 * 60,
...config.db.extra,
},
...(config.dbReplications ? {
Expand Down

0 comments on commit b714ba3

Please sign in to comment.