https://pulumi.com logo
#golang
Title
# golang
g

gifted-city-99717

12/03/2020, 2:59 AM
I’m running into the following error:
Copy code
$ pulumi version
v2.15.0

$ go test -v -cover ./...
# gocloud.dev/blob/azureblob
../../../../../../pkg/mod/gocloud.dev@v0.20.0/blob/azureblob/azureblob.go:384:42: not enough arguments in call to dstBlobURL.StartCopyFromURL
	have (context.Context, url.URL, azblob.Metadata, azblob.ModifiedAccessConditions, azblob.BlobAccessConditions)
	want (context.Context, url.URL, azblob.Metadata, azblob.ModifiedAccessConditions, azblob.BlobAccessConditions, azblob.AccessTierType, azblob.BlobTagsMap)
../../../../../../pkg/mod/gocloud.dev@v0.20.0/blob/azureblob/azureblob.go:646:18: undefined: azblob.BlobItem
FAIL	<http://maestro.corelight.io/research-infra/crunchmon/cmd/haven|maestro.corelight.io/research-infra/crunchmon/cmd/haven> [build failed]
this came after removing the following from go.mod
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
b

billowy-army-68599

12/03/2020, 3:05 AM
that replace is necessary due to an upstream issue which i can't remember, you need to put it back in your
go.mod
g

gifted-city-99717

12/03/2020, 6:38 PM
thanks
3 Views