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
The zipkin4net.middleware.aspnetcore package declares a dependency of >= 1.1.0 on zipkin4net, but it is not actually compatible with that version:
System.MissingMethodException: Method not found: 'Void zipkin4net.Transport.Http.TracingHandler..ctor(System.String, System.Net.Http.HttpMessageHandler)'.
This is because an extra optional argument has been added to the constructor of TracingHandler in v1.2.0 which is not present in v1.1.0.
If you force your app to use v1.2.0 of both libraries then it works fine, but if you just install the middleware and take the transitive dependency on v1.1.0 then you'll get the above runtime exception.
The text was updated successfully, but these errors were encountered:
The zipkin4net.middleware.aspnetcore package declares a dependency of
>= 1.1.0
on zipkin4net, but it is not actually compatible with that version:This is because an extra optional argument has been added to the constructor of
TracingHandler
in v1.2.0 which is not present in v1.1.0.If you force your app to use v1.2.0 of both libraries then it works fine, but if you just install the middleware and take the transitive dependency on v1.1.0 then you'll get the above runtime exception.
The text was updated successfully, but these errors were encountered: