I’m running into the following error: ```$ pulumi ...
# golang
g
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
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
thanks