-
Notifications
You must be signed in to change notification settings - Fork 65
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
[tchannel-java] Upgrade OT to 0.31; Jaeger to 0.23 #189
Conversation
Signed-off-by: Debosmit Ray <debo@uber.com>
Solves #188 |
pom.xml
Outdated
</dependency> | ||
<dependency> | ||
<groupId>com.uber.jaeger</groupId> | ||
<artifactId>jaeger-core</artifactId> | ||
<version>0.21.0</version> | ||
<version>0.23.0</version> |
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.
we should consider moving this into tchannel-crossdock module, rather than claiming it a dependency of the whole tchannel
Signed-off-by: Debosmit Ray <debo@uber.com>
@@ -23,6 +23,13 @@ | |||
<dependency> | |||
<groupId>com.uber.jaeger</groupId> | |||
<artifactId>jaeger-core</artifactId> | |||
<version>${com.uber.jaeger.version}</version> |
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.
@yurishkuro looks better now?
Codecov Report
@@ Coverage Diff @@
## master #189 +/- ##
=========================================
Coverage 70.98% 70.98%
Complexity 10 10
=========================================
Files 87 87
Lines 2653 2653
Branches 314 314
=========================================
Hits 1883 1883
Misses 551 551
Partials 219 219 Continue to review full report at Codecov.
|
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.
the only change required was to update the jaeger version (and add the gson
exclusion, if needed).
@@ -88,6 +88,7 @@ | |||
<jmh.version>1.19</jmh.version> | |||
<se.eris.notnull.instrument>false</se.eris.notnull.instrument><!-- off by default --> | |||
<slf4j.version>1.7.25</slf4j.version> | |||
<com.uber.jaeger.version>0.23.0</com.uber.jaeger.version> |
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 indirection is redundant - use the version number where it's needed (1 place).
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.
resolved
<dependency> | ||
<groupId>com.uber.jaeger</groupId> | ||
<artifactId>jaeger-core</artifactId> | ||
<version>0.21.0</version> |
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.
dependencyManagement
section defines dependency artifact versions (and exclusions) for the whole hierarchy of the project poms - bring it back (with the new gson
exclusion, if needed).
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.
resolved
@@ -87,6 +87,13 @@ | |||
<dependency> | |||
<groupId>com.uber.jaeger</groupId> | |||
<artifactId>jaeger-core</artifactId> | |||
<version>${com.uber.jaeger.version}</version> |
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.
the version (and exclusions) is defined in the parent pom dependency management section. remove it from here.
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.
done
@@ -23,6 +23,13 @@ | |||
<dependency> | |||
<groupId>com.uber.jaeger</groupId> | |||
<artifactId>jaeger-core</artifactId> | |||
<version>${com.uber.jaeger.version}</version> |
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.
remove the version and exclusions. these come from parent pom dependency management.
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.
done
This reverts commit 0a63b21.
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.
addressed in #191
@@ -88,6 +88,7 @@ | |||
<jmh.version>1.19</jmh.version> | |||
<se.eris.notnull.instrument>false</se.eris.notnull.instrument><!-- off by default --> | |||
<slf4j.version>1.7.25</slf4j.version> | |||
<com.uber.jaeger.version>0.23.0</com.uber.jaeger.version> |
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.
resolved
<dependency> | ||
<groupId>com.uber.jaeger</groupId> | ||
<artifactId>jaeger-core</artifactId> | ||
<version>0.21.0</version> |
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.
resolved
@@ -87,6 +87,13 @@ | |||
<dependency> | |||
<groupId>com.uber.jaeger</groupId> | |||
<artifactId>jaeger-core</artifactId> | |||
<version>${com.uber.jaeger.version}</version> |
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.
done
@@ -23,6 +23,13 @@ | |||
<dependency> | |||
<groupId>com.uber.jaeger</groupId> | |||
<artifactId>jaeger-core</artifactId> | |||
<version>${com.uber.jaeger.version}</version> |
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.
done
Signed-off-by: Debosmit Ray debo@uber.com