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
diff options
context:
space:
mode:
authorJohn Cai <jcai@gitlab.com>2022-05-04 17:27:30 +0300
committerJohn Cai <jcai@gitlab.com>2022-05-04 17:27:30 +0300
commitc40c629a01fae35e3f34b05bf1e28a94aaac2692 (patch)
tree1deafae0675a2ce645138a0b173fd61d194a48fe
parentfb86bb6cb61a072f1003699e482f3819f2c84fd1 (diff)
go.mod: Remove exclude directivejc-remove-gomod-exclude-directive
Remove the exlude directive that prevented us from pulling in a a buggy version of grpc/grpc-go. We don't use this package anymore, so there's no reason to keep this directive. Also, newer versions of grpc/grpc-go has fixed the bug that's mentioned as the reason for the exclude. Changelog: other
-rw-r--r--go.mod9
1 files changed, 0 insertions, 9 deletions
diff --git a/go.mod b/go.mod
index 6c4fd5106..859d71f65 100644
--- a/go.mod
+++ b/go.mod
@@ -1,14 +1,5 @@
module gitlab.com/gitlab-org/gitaly/v14
-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/beevik/ntp v0.3.0
github.com/cloudflare/tableflip v1.2.2