Skip to content
New issue

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

Fix(CI): 'update-otel' make target fails with 'go-chi' dependency issue #8838

Merged
merged 1 commit into from
Mar 29, 2022

Commits on Mar 29, 2022

  1. Fix 'update-otel' make target fails with 'go-chi' dependency issue

    opentelemetry-collector-contrib has a dependency on `gopkg.in/DataDog/dd-trace-go.v1 v1.37.0`.
    `gopkg.in/DataDog/dd-trace-go.v1 v1.37.0` has a dependency on `github.com/go-chi/chi v4.0.0-rc1`.
    However, the tag has been removed from the repository for `v4.0.0-rc1`.
    
    This means then that the `update-otel` target fails as follows:
    
    go: gopkg.in/DataDog/dd-trace-go.v1@v1.37.0 requires
    	github.com/go-chi/chi/v4@v4.0.0-rc1: reading github.com/go-chi/chi/go.mod at
    revision v4.0.0-rc1: unknown revision v4.0.0-rc1
    
    This PR replaces the chi dependency with `v4.0.0` until the issue is resolved with
    the `dd-trace-go` module.
    
    Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com>
    hickeyma committed Mar 29, 2022
    Configuration menu
    Copy the full SHA
    dbbf5e5 View commit details
    Browse the repository at this point in the history