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
Some instrumentations are missing the opentelemetry-instrumentation dependency even when they use it directly in their source code. Fix this.
Just for the record, let's consider this situation (which is the situation of some instrumentations):
Package A uses X in their code
Package A has B as a dependency
Package B has X as a dependency
This may seem like it is not necessary that package A has X specified in its dependencies because when installing A, B will be installed and before installing B, X will. Nevertheless, this is prone to breaking because if for some reason B changes and no longer depends on X, then A will break. Every package used in the source code of Z must be in the dependencies of Z.
The text was updated successfully, but these errors were encountered:
Some instrumentations are missing the
opentelemetry-instrumentation
dependency even when they use it directly in their source code. Fix this.Just for the record, let's consider this situation (which is the situation of some instrumentations):
This may seem like it is not necessary that package A has X specified in its dependencies because when installing A, B will be installed and before installing B, X will. Nevertheless, this is prone to breaking because if for some reason B changes and no longer depends on X, then A will break. Every package used in the source code of Z must be in the dependencies of Z.
The text was updated successfully, but these errors were encountered: