aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAyzat Sadykov <ayzat.ziko.93@gmail.com>2020-10-24 22:11:51 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2020-10-27 15:12:12 +0000
commitde477138d1b11982e86d8d0898e2a471771899b6 (patch)
treec8b230e37eea2394ee9a2345fabb8830c75751e9
parent69496a22682108bed606d4d509cfa3253f0cac3b (diff)
downloadgo-de477138d1b11982e86d8d0898e2a471771899b6.tar.gz
go-de477138d1b11982e86d8d0898e2a471771899b6.zip
database/sql: fix comment on DB.stop()
Previously, 2 goroutines were created in OpenDB and a comment in the DB.close() field indicated that they were canceled. Later, session Resetter () was removed, but the comment remained the same. This commit just fixes this message Change-Id: Ie81026f51d7770e9cf8004818154021f626fb2e8 GitHub-Last-Rev: 38b338a0d1cd713d71fa547aa842d395e6d75484 GitHub-Pull-Request: golang/go#42191 Reviewed-on: https://go-review.googlesource.com/c/go/+/264838 Reviewed-by: Daniel Theophanes <kardianos@gmail.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Trust: Brad Fitzpatrick <bradfitz@golang.org>
-rw-r--r--src/database/sql/sql.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/sql/sql.go b/src/database/sql/sql.go
index e3580698fd..fc7e3e4485 100644
--- a/src/database/sql/sql.go
+++ b/src/database/sql/sql.go
@@ -434,7 +434,7 @@ type DB struct {
maxIdleTimeClosed int64 // Total number of connections closed due to idle time.
maxLifetimeClosed int64 // Total number of connections closed due to max connection lifetime limit.
- stop func() // stop cancels the connection opener and the session resetter.
+ stop func() // stop cancels the connection opener.
}
// connReuseStrategy determines how (*DB).conn returns database connections.