-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b965d69
commit bdeca5f
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bdeca5f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has failed upon updating to otel v0.13.0 open-telemetry/opentelemetry-go#1237
bdeca5f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As was said in the issue you should initialize a Go module:
See https://github.com/golang/go/wiki/Modules for details
bdeca5f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updating
go-redis
to useotel v0.13.0
will require adjusting to the changes that have happened in the OpenTelemetry Go SDK and API sincev0.11.0
. Simply updating thego.mod
requirement is going to lead to failure. It looks like the OTel integration has been moved to a separate repository,but the issue persists there as it is referencingv0.13.0
in itsgo.mod
but still referencing theapi/trace
package that does not exist in that version of the API.Scratch that last. I've confused myself on order of operations and the
api/trace
package was moved after thev0.13.0
release. Whenv0.14.0
is released next week then theredisext
integration will need to be updated.bdeca5f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 I've pinned #1534 with the answer.