cxorm commented on a change in pull request #164: HDDS-426. Add field 
modificationTime for Volume and Bucket
URL: https://github.com/apache/hadoop-ozone/pull/164#discussion_r396450260
 
 

 ##########
 File path: 
hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/OzoneBucket.java
 ##########
 @@ -155,16 +161,19 @@ public OzoneBucket(Configuration conf, ClientProtocol 
proxy,
    * @param storageType StorageType of the bucket.
    * @param versioning versioning status of the bucket.
    * @param creationTime creation time of the bucket.
+   * @param modificationTime modification time of the bucket.
    */
   @SuppressWarnings("parameternumber")
   public OzoneBucket(Configuration conf, ClientProtocol proxy,
 
 Review comment:
   Thanks @xiaoyuyao for the review.
   
   Do you mean that we should have a new API such as 
   ```  
   public OzoneBucket(Configuration conf, ClientProtocol proxy, 
       String volumeName, String bucketName, StorageType storageType,
       Boolean versioning, long creationTime, long modificationTime,
       Map<String, String> metadata) {
     this.modificationTime = modificationTime;
     OzoneBucket(conf, proxy, volumeName, bucketName, storageType, versioning, 
       creationTime, metadata); // existed API.
   }
   ```
   here ?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

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

Reply via email to