From 2ccf3e2edfde2f10d35b5faf74b347a1be3b37ea Mon Sep 17 00:00:00 2001 From: Paul Okstad Date: Fri, 8 Jan 2021 13:46:13 +0000 Subject: Avoid using dependency grpc-go v1.35.0 There is an issue with UNIX domain socket dialing with grpc-go version 1.35.0. This change includes a Go module directive to exclude the affected versions until a newer fixed version can be used. More details can be found at the bug issue: https://github.com/grpc/grpc-go/issues/3990 --- go.mod | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/go.mod b/go.mod index 49dc4e3e4..31c22be1a 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,14 @@ module gitlab.com/gitlab-org/gitaly +exclude ( + // grpc-go version v1.34.0 and v1.35.0-dev have a bug that affects unix domain docket + // dialing. It should be avoided until upgraded to a newer fixed + // version. More details: + // https://github.com/grpc/grpc-go/issues/3990 + github.com/grpc/grpc-go v1.34.0 + github.com/grpc/grpc-go v1.35.0-dev +) + require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cloudflare/tableflip v1.2.1-0.20200514155827-4baec9811f2b -- cgit v1.2.3