We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dongtai agent在0.3.3版本加入了grpc(github.com/HXSecurity/DongTai-agent-go/run/grpc)支持,引入的grpc版本是1.45,而grpc在1.42版本改了一个函数(attributes.New)的传参格式:
func New(kvs ...interface{}) *Attributes
func New(key, value interface{}) *Attributes
我们框架使用的grpc1.40,在引入dongtai agent(0.3.3之后版本)之后go mod会自动更新grpc版本到1.45,导致运行时候报错:
too many arguments in call to attributes.New have (string, string, string) want (interface{}, interface{})
框架代码没法改动,想问下有没有什么兼容的方式
The text was updated successfully, but these errors were encountered:
No branches or pull requests
dongtai agent在0.3.3版本加入了grpc(github.com/HXSecurity/DongTai-agent-go/run/grpc)支持,引入的grpc版本是1.45,而grpc在1.42版本改了一个函数(attributes.New)的传参格式:
func New(kvs ...interface{}) *Attributes
func New(key, value interface{}) *Attributes
我们框架使用的grpc1.40,在引入dongtai agent(0.3.3之后版本)之后go mod会自动更新grpc版本到1.45,导致运行时候报错:
框架代码没法改动,想问下有没有什么兼容的方式
The text was updated successfully, but these errors were encountered: