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 4068af9 commit 6a58bc9Copy full SHA for 6a58bc9
CHANGELOG.md
@@ -1,3 +1,6 @@
1
+## v3.95.6
2
+* Fixed panic on span reporting in `xsql/Tx`
3
+
4
## v3.95.5
5
* Fixed goroutine leak on failed execute call in query client
6
internal/xsql/legacy/tx.go
@@ -20,6 +20,10 @@ type transaction struct {
20
}
21
22
func (tx *transaction) ID() string {
23
+ if tx.tx == nil {
24
+ return ""
25
+ }
26
27
return tx.tx.ID()
28
29
internal/xsql/tx.go
@@ -18,6 +18,10 @@ type Tx struct {
18
19
func (tx *Tx) ID() string {
0 commit comments