ArafatKhan2198 commented on code in PR #4107:
URL: https://github.com/apache/ozone/pull/4107#discussion_r1067786656


##########
hadoop-ozone/recon/src/main/java/org/apache/hadoop/ozone/recon/api/UtilizationEndpoint.java:
##########
@@ -49,21 +55,24 @@ public class UtilizationEndpoint {
 
   private FileCountBySizeDao fileCountBySizeDao;
   private UtilizationSchemaDefinition utilizationSchemaDefinition;
+  private ContainerCountBySizeDao containerCountBySizeDao;
 
   @Inject
   public UtilizationEndpoint(FileCountBySizeDao fileCountBySizeDao,
+                             ContainerCountBySizeDao containerCountBySizeDao,
                              UtilizationSchemaDefinition
                                  utilizationSchemaDefinition) {
     this.utilizationSchemaDefinition = utilizationSchemaDefinition;
     this.fileCountBySizeDao = fileCountBySizeDao;
+    this.containerCountBySizeDao = containerCountBySizeDao;
   }
 
   /**
    * Return the file counts from Recon DB.
    * @return {@link Response}
    */
   @GET
-  @Path("/fileCount")
+  @Path("/pop")

Review Comment:
   This was by mistake! thanks for pointing it out !!



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