This is an automated email from the ASF dual-hosted git repository.
abhishekpal pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone.git
The following commit(s) were added to refs/heads/master by this push:
new 2adf3be01db HDDS-14625. [Recon] Display Total Replicated Size for SCM
Pending Deletion (#9757)
2adf3be01db is described below
commit 2adf3be01db7b9c123d7b5ab709c2fcbcd36329a
Author: Priyesh Karatha <[email protected]>
AuthorDate: Tue Feb 17 22:37:19 2026 +0530
HDDS-14625. [Recon] Display Total Replicated Size for SCM Pending Deletion
(#9757)
---
.../recon/ozone-recon-web/src/v2/pages/capacity/capacity.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/pages/capacity/capacity.tsx
b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/pages/capacity/capacity.tsx
index b8f895a24ff..0d7777178d4 100644
---
a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/pages/capacity/capacity.tsx
+++
b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/pages/capacity/capacity.tsx
@@ -342,7 +342,7 @@ const Capacity: React.FC<object> = () => {
),
value: (
omPendingDeletes.data.totalSize
- + scmPendingDeletes.data.totalBlocksize
+ + scmPendingDeletes.data.totalReplicatedBlockSize
+ (dnPendingDeletes.data.totalPendingDeletionSize ?? 0)
),
color: "#10073b"
@@ -367,10 +367,10 @@ const Capacity: React.FC<object> = () => {
}]
}, {
title: 'STORAGE CONTAINER MANAGER',
- size: scmPendingDeletes.data.totalBlocksize,
+ size: scmPendingDeletes.data.totalReplicatedBlockSize,
breakdown: [{
label: 'BLOCKS',
- value: scmPendingDeletes.data.totalBlocksize,
+ value: scmPendingDeletes.data.totalReplicatedBlockSize,
color: '#f4a233'
}]
}, {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]