-
Notifications
You must be signed in to change notification settings - Fork 6
Throttler implementation #18
base: master
Are you sure you want to change the base?
Throttler implementation #18
Conversation
b6c96b9
to
0dd9d9d
Compare
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME | |||
distributionPath=wrapper/dists | |||
zipStoreBase=GRADLE_USER_HOME | |||
zipStorePath=wrapper/dists | |||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-bin.zip | |||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-bin.zip |
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.
Why downgrade?
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 messed this up. Good catch.
@@ -202,11 +202,20 @@ public synchronized Span setTag(String key, Number value) { | |||
private Span setTagAsObject(String key, Object value) { | |||
if (key.equals(Tags.SAMPLING_PRIORITY.getKey()) && (value instanceof Number)) { | |||
int priority = ((Number) value).intValue(); | |||
byte newFlags; | |||
|
|||
// Ignore debug spans trying to re-enable debug. |
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.
Could you detail why in the comment?
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.
Sure thing.
7785619
to
3e28488
Compare
Codecov Report
@@ Coverage Diff @@
## master #18 +/- ##
============================================
- Coverage 84.73% 84.37% -0.36%
- Complexity 607 637 +30
============================================
Files 94 100 +6
Lines 2410 2516 +106
Branches 271 284 +13
============================================
+ Hits 2042 2123 +81
- Misses 276 292 +16
- Partials 92 101 +9
Continue to review full report at Codecov.
|
Signed-off-by: Isaac Hier <[email protected]>
Signed-off-by: Isaac Hier <[email protected]>
Signed-off-by: Isaac Hier <[email protected]>
Signed-off-by: Isaac Hier <[email protected]>
Signed-off-by: Isaac Hier <[email protected]>
a020baa
to
765f05c
Compare
Throttler implementation for Java.