replacing apache.com/thrift with github.com to solve network issue when building; missing dangling comma (#66)
This commit is contained in:
parent
3475ff3c9d
commit
7c1e432a27
3 changed files with 7 additions and 3 deletions
7
go.mod
7
go.mod
|
@ -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
|
||||
)
|
||||
|
|
Reference in a new issue