]> Cypherpunks.ru repositories - gostls13.git/commitdiff
database/sql: fix comment on DB.stop()
authorAyzat Sadykov <ayzat.ziko.93@gmail.com>
Sat, 24 Oct 2020 22:11:51 +0000 (22:11 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Tue, 27 Oct 2020 15:12:12 +0000 (15:12 +0000)
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>

src/database/sql/sql.go

index e3580698fd6fa48ba7b508889237bc57081069c7..fc7e3e44850a058044defc03dc7258bf5f773198 100644 (file)
@@ -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.