我直到2019年10月30日之前都没有错误获取/安装以下软件包。是某种原因导致的吗?我该如何解决?谢谢!
命令:
go get github.com/hashicorp/vault/command
错误:
github.com/hashicorp/vault/builtin/logical/rabbitmq
/go/src/github.com/hashicorp/vault/builtin/logical/rabbitmq/path_role_create.go:100:23: client.UpdateTopicPermissionsIn undefined (type *rabbithole.Client has no field or method UpdateTopicPermissionsIn)
/go/src/github.com/hashicorp/vault/builtin/logical/rabbitmq/path_role_create.go:100:66: undefined: rabbithole.TopicPermissions
go版本:golang:1.12.9-alpine3.9
get命令获取您正在使用的库的最新版本,但是在您的情况下,您可能希望使用已经运行的先前版本。
基于此处
https://github.com/hashicorp/vault/releases
您只需要使用此命令导入版本
go get github.com/hashicorp/vault/[email protected]
希望有帮助