We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e827ec1 commit f3de353Copy full SHA for f3de353
CHANGELOG.md
@@ -1,3 +1,5 @@
1
+* Fixed an error in logging session deletion events
2
+
3
## v3.95.3
4
* Supported of `database/sql/driver.Valuer` interfaces for params which passed to query using sql driver
5
* Exposed `credentials/credentials.OAuth2Config` OAuth2 config
internal/table/session.go
@@ -193,8 +193,8 @@ func (s *session) Close(ctx context.Context) (err error) {
193
s,
194
)
195
defer func() {
196
- s.SetStatus(table.SessionClosed)
197
onDone(err)
+ s.SetStatus(table.SessionClosed)
198
}()
199
200
if time.Since(s.LastUsage()) < s.config.IdleThreshold() {
0 commit comments