Restores context MD passed to GetInfo to mgmt (is it valuable data?)

This commit is contained in:
riccardom
2026-06-16 18:55:08 +02:00
parent 9758145517
commit d1229ed84c
6 changed files with 30 additions and 15 deletions
+1 -1
View File
@@ -272,7 +272,7 @@ func (c *Client) Start(startCtx context.Context) error {
run := make(chan struct{})
clientErr := make(chan error, 1)
go func() {
if err := client.Run(c.config, run, ""); err != nil {
if err := client.Run(c.config, nil, run, ""); err != nil {
clientErr <- err
}
}()