fmorg-git commented on code in PR #11134:
URL: https://github.com/apache/ozone/pull/11134#discussion_r3920589781


##########
hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/ResolvedBucket.java:
##########
@@ -44,11 +46,18 @@ public class ResolvedBucket {
   private final String realBucket;
   private final String bucketOwner;
   private final BucketLayout bucketLayout;
+  private final Collection<Pair<String, String>> linkChain;
 
   public ResolvedBucket(String requestedVolume, String requestedBucket,
       OmBucketInfo resolved) {
+    this(requestedVolume, requestedBucket, resolved, Collections.emptyList());
+  }
+
+  public ResolvedBucket(String requestedVolume, String requestedBucket,
+      OmBucketInfo resolved, Collection<Pair<String, String>> linkChain) {
     this.requestedVolume = requestedVolume;
     this.requestedBucket = requestedBucket;
+    this.linkChain = linkChain == null ? Collections.emptyList() : linkChain;
     if (resolved != null) {

Review Comment:
   updated with 8f5bd4df6fdd0aae357d4cf850d805ade2b456b1



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