replacing apache.com/thrift with github.com to solve network issue when building; missing dangling comma (#66)

This commit is contained in:
Nikhil Ranjan 2019-09-17 00:02:14 +02:00 committed by Ali Farooq
parent 3475ff3c9d
commit 7c1e432a27
3 changed files with 7 additions and 3 deletions

7
go.mod
View file

@ -15,5 +15,8 @@ require (
github.com/stretchr/testify v1.3.0
)
// Workaround for https://github.com/golang/go/issues/30831 and fallout.
replace github.com/golang/lint => github.com/golang/lint v0.0.0-20190227174305-8f45f776aaf1
replace (
git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20180902110319-2566ecd5d999
// Workaround for https://github.com/golang/go/issues/30831 and fallout.
github.com/golang/lint => github.com/golang/lint v0.0.0-20190227174305-8f45f776aaf1
)