diff --git a/CHANGELOG.md b/CHANGELOG.md index 277cc9c15..7e85e0a28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +* Fixed metadata for operation service connection * Fixed composing query traces in call `db.Query.Do[Tx]` using option `query.WithTrace` ## v3.80.2 diff --git a/driver.go b/driver.go index 2b1e6dd6a..3b3081389 100644 --- a/driver.go +++ b/driver.go @@ -519,7 +519,7 @@ func (d *Driver) connect(ctx context.Context) (err error) { d.operation = xsync.OnceValue(func() (*operation.Client, error) { return operation.New(xcontext.ValueOnly(ctx), - d.pool.Get(endpoint.New(d.config.Endpoint())), + d.balancer, ), nil })