From ca49f5672a7a23af9731a4025ed74ec2b35de150 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=AB=E3=83=B3?= Date: Tue, 28 Apr 2026 11:14:03 +0900 Subject: [PATCH] =?UTF-8?q?docs(database):=20fix=20proof=20claim=20?= =?UTF-8?q?=E2=80=94=20SetMaxOpenConns(1)=20is=20sufficient,=20not=20neces?= =?UTF-8?q?sary?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- database/concurrent_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/concurrent_test.go b/database/concurrent_test.go index e162114b..e88f2548 100644 --- a/database/concurrent_test.go +++ b/database/concurrent_test.go @@ -56,8 +56,8 @@ func TestInitDBConcurrencyConfig(t *testing.T) { }) } -// TestConcurrentWrites proves that SetMaxOpenConns(1) is necessary and -// sufficient to prevent the "database is locked" errors in issue #3739. +// TestConcurrentWrites proves that SetMaxOpenConns(1) is sufficient to prevent +// the "database is locked" errors in issue #3739. // // Both sub-tests use _busy_timeout=10ms so that lock contention surfaces // within milliseconds rather than the go-sqlite3 default of 5 000 ms.