File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/main/java/com/uber/cadence/internal/worker Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ googleJavaFormat {
37
37
}
38
38
39
39
group = ' com.uber.cadence'
40
- version = ' 2.6.0 '
40
+ version = ' 2.6.1 '
41
41
42
42
description = """ Uber Cadence Java Client"""
43
43
Original file line number Diff line number Diff line change @@ -95,7 +95,9 @@ public ActivityWorker.MeasurableActivityTask poll() throws TException {
95
95
options
96
96
.getMetricsScope ()
97
97
.timer (MetricsType .ACTIVITY_SCHEDULED_TO_START_LATENCY )
98
- .record (Duration .ofNanos (result .getStartedTimestamp () - result .getScheduledTimestampOfThisAttempt ()));
98
+ .record (
99
+ Duration .ofNanos (
100
+ result .getStartedTimestamp () - result .getScheduledTimestampOfThisAttempt ()));
99
101
sw .stop ();
100
102
return new ActivityWorker .MeasurableActivityTask (result , e2eSW );
101
103
}
You can’t perform that action at this time.
0 commit comments