Skip to content

Commit 4ea508e

Browse files
committed
format
1 parent 26ccb0d commit 4ea508e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/io/lettuce/test/WorkloadRunnerBase.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ public void run() {
178178
Timer.Sample timer = WorkloadRunnerBase.this.metricsReporter.startTimer();
179179
try {
180180
task.run();
181-
WorkloadRunnerBase.this.metricsReporter.recordWorkloadExecutionDuration(timer, config.getType(), BaseWorkload.Status.SUCCESSFUL);
181+
WorkloadRunnerBase.this.metricsReporter.recordWorkloadExecutionDuration(timer, config.getType(),
182+
BaseWorkload.Status.SUCCESSFUL);
182183
} catch (Exception e) {
183184
// Note: Use client and conn reference to track, which client and connection caused the error
184185
// could not find other means to identify the client and connection

0 commit comments

Comments
 (0)