Hi, i’m running into a go mod error I’m not sure h...
# golang
g
Hi, i’m running into a go mod error I’m not sure how to fix
Copy code
imports <http://github.com/Azure/go-autorest/autorest|github.com/Azure/go-autorest/autorest>: ambiguous import: found package <http://github.com/Azure/go-autorest/autorest|github.com/Azure/go-autorest/autorest> in multiple modules:
	<http://github.com/Azure/go-autorest|github.com/Azure/go-autorest> v12.0.0+incompatible (/Users/jws/code/gocode/pkg/mod/github.com/!azure/go-autorest@v12.0.0+incompatible/autorest)
	<http://github.com/Azure/go-autorest/autorest|github.com/Azure/go-autorest/autorest> v0.10.0 (/Users/jws/code/gocode/pkg/mod/github.com/!azure/go-autorest/autorest@v0.10.0)
I think I want to pin a version of autotest? is that the right way to solve a dependency error like this? i’m on
Copy code
♥ λ go version
go version go1.14.3 darwin/amd64
l
Is this after taking a dependency on pulumi/pkg for testing? We use a replace to pin to a specific version:
Copy code
replace(
 <http://github.com/Azure/go-autorest|github.com/Azure/go-autorest> => <http://github.com/Azure/go-autorest|github.com/Azure/go-autorest> v12.4.3+incompatible
)
g
I think so. I just started writing my integration tests. i got it to work by ’go get’ing the problem package. i’ll try the replace. Thanks!
yup. that worked. Thank you!
👍 1