From 0696a252cc1a1aa8138cbe366cee115d59daec6b Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Mon, 12 Dec 2022 17:22:43 +0200 Subject: [PATCH] fixed comment formatting --- core/db_nocgo.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/db_nocgo.go b/core/db_nocgo.go index 632a192d..ea5ce4d7 100644 --- a/core/db_nocgo.go +++ b/core/db_nocgo.go @@ -21,8 +21,8 @@ func connectDB(dbPath string) (*dbx.DB, error) { return nil, err } - // use a fixed connection pool to limit the SQLITE_BUSY errors and - // reduce the open file descriptors + // use a fixed connection pool to limit the SQLITE_BUSY errors + // and reduce the open file descriptors // (the limits are arbitrary and may change in the future) db.DB().SetMaxOpenConns(30) db.DB().SetMaxIdleConns(30)