-
Notifications
You must be signed in to change notification settings - Fork 11
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
Remove go module replace #221
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #221 +/- ##
=======================================
Coverage 43.88% 43.88%
=======================================
Files 6 6
Lines 319 319
=======================================
Hits 140 140
Misses 176 176
Partials 3 3 ☔ View full report in Codecov by Sentry. |
@@ -2,11 +2,6 @@ module github.com/carousell/Orion | |||
|
|||
go 1.17 | |||
|
|||
replace ( | |||
git.apache.org/thrift.git => github.com/apache/thrift v0.12.0 |
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 git.apache.org/thrift.git
is not even in direct or indirect dependency listed in this go.mod, it doesn't effectively affect the result of dependency resolution. The replace is no effect, can be safely removed.
@@ -2,11 +2,6 @@ module github.com/carousell/Orion | |||
|
|||
go 1.17 | |||
|
|||
replace ( | |||
git.apache.org/thrift.git => github.com/apache/thrift v0.12.0 | |||
github.com/openzipkin-contrib/zipkin-go-opentracing => github.com/openzipkin-contrib/zipkin-go-opentracing v0.3.5 |
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.
github.com/openzipkin-contrib/[email protected]
is explicitly listed in this go.mod. no replace
is needed to override the version
The two go module replacement was added long time ago and no longer needed. See the line comment for the explanation