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
When attempting to pull the sdk/metric alpha you get an error:
go: downloading go.opentelemetry.io/otel/sdk v0.0.0-00010101000000-000000000000 go.opentelemetry.io/otel/sdk/metric imports go.opentelemetry.io/otel/sdk/instrumentation: go.opentelemetry.io/otel/[email protected]: invalid version: unknown revision 000000000000 go.opentelemetry.io/otel/sdk/metric imports go.opentelemetry.io/otel/sdk/resource: go.opentelemetry.io/otel/[email protected]: invalid version: unknown revision 000000000000
This is because the go.mod has an entry:
go.mod
go.opentelemetry.io/otel/sdk v0.0.0-00010101000000-000000000000
go mod init main
go get go.opentelemetry.io/otel/sdk/metric
We should be able to go get the SDK without a problem.
go get
The text was updated successfully, but these errors were encountered:
I wonder if a step could be added to CI to just go get all the modules? Just a thought on how to prevent it in the future.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Description
When attempting to pull the sdk/metric alpha you get an error:
This is because the
go.mod
has an entry:Environment
Steps To Reproduce
go mod init main
go get go.opentelemetry.io/otel/sdk/metric
Expected behavior
We should be able to
go get
the SDK without a problem.The text was updated successfully, but these errors were encountered: