We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1b86f6 commit d65c3e5Copy full SHA for d65c3e5
build.gradle
@@ -37,7 +37,7 @@ googleJavaFormat {
37
}
38
39
group = 'com.uber.cadence'
40
-version = '2.6.0'
+version = '2.6.1'
41
42
description = """Uber Cadence Java Client"""
43
src/main/java/com/uber/cadence/internal/worker/ActivityPollTask.java
@@ -95,7 +95,9 @@ public ActivityWorker.MeasurableActivityTask poll() throws TException {
95
options
96
.getMetricsScope()
97
.timer(MetricsType.ACTIVITY_SCHEDULED_TO_START_LATENCY)
98
- .record(Duration.ofNanos(result.getStartedTimestamp() - result.getScheduledTimestampOfThisAttempt()));
+ .record(
99
+ Duration.ofNanos(
100
+ result.getStartedTimestamp() - result.getScheduledTimestampOfThisAttempt()));
101
sw.stop();
102
return new ActivityWorker.MeasurableActivityTask(result, e2eSW);
103
0 commit comments