From 9154c4fc592164df65a0f9284df1e0b96d16382f Mon Sep 17 00:00:00 2001 From: pg9182 <96569817+pg9182@users.noreply.github.com> Date: Fri, 21 Oct 2022 14:30:39 -0400 Subject: db/{atlasdb,pdatadb}: Increase busy timeout --- db/atlasdb/db.go | 2 +- db/pdatadb/db.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/db/atlasdb/db.go b/db/atlasdb/db.go index 0e47ac8..79eb3c0 100644 --- a/db/atlasdb/db.go +++ b/db/atlasdb/db.go @@ -26,7 +26,7 @@ func Open(name string) (*DB, error) { RawQuery: (url.Values{ "_journal": {"WAL"}, "_cache_size": {"-32000"}, - "_busy_timeout": {"4000"}, + "_busy_timeout": {"6000"}, }).Encode(), }).String()) if err != nil { diff --git a/db/pdatadb/db.go b/db/pdatadb/db.go index c27b110..cf1ebcb 100644 --- a/db/pdatadb/db.go +++ b/db/pdatadb/db.go @@ -26,7 +26,7 @@ func Open(name string) (*DB, error) { Path: name, RawQuery: (url.Values{ "_journal": {"WAL"}, - "_busy_timeout": {"4000"}, + "_busy_timeout": {"6000"}, }).Encode(), }).String()) if err != nil { -- cgit v1.2.3