damccorm commented on code in PR #29786:
URL: https://github.com/apache/beam/pull/29786#discussion_r1430241141


##########
runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/DataflowExecutionStateSampler.java:
##########
@@ -86,7 +86,7 @@ public void removeTracker(ExecutionStateTracker tracker) {
       return;
     }
     DataflowExecutionStateTracker dfTracker = (DataflowExecutionStateTracker) 
tracker;
-    completedProcessingMetrics.put(dfTracker.getWorkItemId(), 
dfTracker.getProcessingTimesByStep());
+    completedProcessingMetrics.put(dfTracker.getWorkItemId(), 
dfTracker.getProcessingTimesByStepCopy());

Review Comment:
   ```suggestion
       completedProcessingMetrics.put(
           dfTracker.getWorkItemId(), dfTracker.getProcessingTimesByStepCopy());
   ```
   
   This should fix the spotless issues. I'm just going to apply the change 
since its from spotless



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to