jianghuazhu commented on code in PR #7090:
URL: https://github.com/apache/ozone/pull/7090#discussion_r1721672992


##########
hadoop-hdds/container-service/src/main/java/org/apache/hadoop/ozone/container/common/statemachine/StateContext.java:
##########
@@ -988,4 +999,39 @@ public DatanodeQueueMetrics getQueueMetrics() {
   public String getThreadNamePrefix() {
     return threadNamePrefix;
   }
+
+  static class PipelineKey {
+    private final HddsProtos.PipelineID pipelineID;
+    private final PipelineAction.Action action;
+
+    PipelineKey(HddsProtos.PipelineID pipelineID, PipelineAction.Action 
action) {
+      this.pipelineID = pipelineID;
+      this.action = action;
+    }
+
+    public HddsProtos.PipelineID getPipelineID() {
+      return pipelineID;
+    }
+
+    public PipelineAction.Action getAction() {
+      return action;
+    }

Review Comment:
   Thanks @twosz.
   I have updated them all.



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to