From d8e7eb9cee90aec077ea9a5cbd9436d315f9f132 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Fri, 24 May 2024 11:21:23 +0300 Subject: [PATCH] Fix go install gqlgen binary --- go.mod | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/go.mod b/go.mod index c4639bef1d5..4cf40e927f3 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.20 require ( github.com/PuerkitoBio/goquery v1.9.2 github.com/google/uuid v1.6.0 - github.com/gorilla/websocket v1.5.0 + github.com/gorilla/websocket v1.5.0 // do not upgrade to v1.5.1 as it has serious bugs github.com/hashicorp/golang-lru/v2 v2.0.7 github.com/kevinmbeaulieu/eq-go v1.0.0 github.com/logrusorgru/aurora/v3 v3.0.0 @@ -36,6 +36,3 @@ require ( golang.org/x/sync v0.7.0 // indirect golang.org/x/sys v0.20.0 // indirect ) - -// skip 1.5.1 as it has serious bugs -replace github.com/gorilla/websocket => github.com/gorilla/websocket v1.5.0