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.
2 parents 48c437b + bb8ac93 commit 92a21f9Copy full SHA for 92a21f9
CHANGELOG.md
@@ -1,4 +1,5 @@
1
* Fixed not passing request context to topic event logs
2
+* Fixed deadlock on closing table session with internal query session core
3
4
## v3.99.6
5
* Added log grpc messages metadata on trace log level for topic writer
internal/table/session.go
@@ -423,7 +423,6 @@ func newQuerySession(
423
switch status {
424
case query.StatusClosed:
425
s.SetStatus(table.SessionClosed)
426
- _ = s.Close(context.Background())
427
case query.StatusClosing:
428
s.SetStatus(table.SessionClosing)
429
case query.StatusInUse:
0 commit comments