You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
When trying to update my go deps, I get the following:
# contrib.go.opencensus.io/exporter/jaeger
/go/pkg/mod/contrib.go.opencensus.io/exporter/[email protected]/agent.go:76:10: a.client.SeqId undefined (type *agent.AgentClient has no field or method SeqId)
/go/pkg/mod/contrib.go.opencensus.io/exporter/[email protected]/agent.go:77:30: not enough arguments in call to a.client.EmitBatch
have (*jaeger.Batch)
want (context.Context, *jaeger.Batch)
/go/pkg/mod/contrib.go.opencensus.io/exporter/[email protected]/jaeger.go:361:21: not enough arguments in call to obj.Write
have (*thrift.TBinaryProtocol)
want (context.Context, thrift.TProtocol)
I have to add the following to keep things happy, but I guess there was a breaking change in the v2.29 update?
# contrib.go.opencensus.io/exporter/jaeger
/home/mamh/.go/pkg/mod/contrib.go.opencensus.io/exporter/[email protected]/agent.go:76:11: a.client.SeqId undefined (type *agent.AgentClient has no field or method SeqId)
/home/mamh/.go/pkg/mod/contrib.go.opencensus.io/exporter/[email protected]/agent.go:77:31: not enough arguments in call to a.client.EmitBatch
have (*"github.com/uber/jaeger-client-go/thrift-gen/jaeger".Batch)
want (context.Context, *"github.com/uber/jaeger-client-go/thrift-gen/jaeger".Batch)
/home/mamh/.go/pkg/mod/contrib.go.opencensus.io/exporter/[email protected]/jaeger.go:361:22: not enough arguments in call to obj.Write
have (*thrift.TBinaryProtocol)
want (context.Context, thrift.TProtocol)
Makefile:27: recipe for target 'build-linux' fail
When trying to update my go deps, I get the following:
I have to add the following to keep things happy, but I guess there was a breaking change in the v2.29 update?
The text was updated successfully, but these errors were encountered: