diff options
author | 2023-01-18 14:37:52 +0100 | |
---|---|---|
committer | 2023-01-18 14:37:52 +0100 | |
commit | 974ec80a206f4e797e88dbb3a429b53667e327c5 (patch) | |
tree | 882eca713a79f065d39e539d60fba751756451e2 /testrig/config.go | |
parent | [feature] Inherit resource limits from cgroups (#1336) (diff) | |
download | gotosocial-974ec80a206f4e797e88dbb3a429b53667e327c5.tar.xz |
[chore] Change default sqlite busy timeout to 5m (#1352)
Diffstat (limited to 'testrig/config.go')
-rw-r--r-- | testrig/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testrig/config.go b/testrig/config.go index 315e52bb9..08c1feb06 100644 --- a/testrig/config.go +++ b/testrig/config.go @@ -55,7 +55,7 @@ var testDefaults = config.Configuration{ DbSqliteJournalMode: "WAL", DbSqliteSynchronous: "NORMAL", DbSqliteCacheSize: 64 * bytesize.MiB, - DbSqliteBusyTimeout: time.Second * 30, + DbSqliteBusyTimeout: time.Minute * 5, WebTemplateBaseDir: "./web/template/", WebAssetBaseDir: "./web/assets/", |