Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/pool.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/pool.go b/client/pool.go
index 4fcd3835e..a6a96afc9 100644
--- a/client/pool.go
+++ b/client/pool.go
@@ -94,7 +94,7 @@ func (p *Pool) getOrCreateConnection(ctx context.Context, address, token string)
cc, err := p.dialer(ctx, address, opts)
if err != nil {
- return nil, fmt.Errorf("could not dial source: %v", err)
+ return nil, fmt.Errorf("could not dial source: %w", err)
}
p.conns[key] = cc