devmadhuu commented on code in PR #4519:
URL: https://github.com/apache/ozone/pull/4519#discussion_r1156996466


##########
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/overview/overview.tsx:
##########
@@ -115,6 +118,7 @@ export class Overview extends 
React.Component<Record<string, object>, IOverviewS
         keys: clusterState.keys,
         missingContainersCount,
         openContainers: clusterState.openContainers,
+        deletedKeys: clusterState.deletedKeys,

Review Comment:
   change the variable name as these are not deleted keys. These are keys 
pending for deletion.



##########
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/overview/overview.tsx:
##########
@@ -41,6 +41,7 @@ interface IClusterStateResponse {
   buckets: number;
   keys: number;
   openContainers: number;
+  deletedKeys: number;

Review Comment:
   change the variable name as these are not deleted keys. These are keys 
pending for deletion.



##########
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/overview/overview.tsx:
##########
@@ -84,7 +86,8 @@ export class Overview extends React.Component<Record<string, 
object>, IOverviewS
       lastUpdatedOMDBDelta: 0,
       lastUpdatedOMDBFull: 0,
       omStatus: '',
-      openContainers: 0
+      openContainers: 0,
+      deletedKeys: 0

Review Comment:
   change the variable name as these are not deleted keys. These are keys 
pending for deletion.



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