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 1b6f358 commit 2e9b4b2Copy full SHA for 2e9b4b2
CHANGELOG.md
@@ -1,3 +1,4 @@
1
+* Fixed metadata for operation service connection
2
* Fixed composing query traces in call `db.Query.Do[Tx]` using option `query.WithTrace`
3
4
## v3.80.2
driver.go
@@ -519,7 +519,7 @@ func (d *Driver) connect(ctx context.Context) (err error) {
519
520
d.operation = xsync.OnceValue(func() (*operation.Client, error) {
521
return operation.New(xcontext.ValueOnly(ctx),
522
- d.pool.Get(endpoint.New(d.config.Endpoint())),
+ d.balancer,
523
), nil
524
})
525
0 commit comments