This is an automated email from the ASF dual-hosted git repository.
arafat2198 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 2ec05cb122 HDDS-11987. Remove duplicate Quota In Bytes field from DU
metadata (#7649)
2ec05cb122 is described below
commit 2ec05cb122f8ae8036d0a55e03f623fcbb8cf93b
Author: Abhishek Pal <[email protected]>
AuthorDate: Tue Jan 7 00:54:20 2025 +0530
HDDS-11987. Remove duplicate Quota In Bytes field from DU metadata (#7649)
---
.../ozone-recon-web/src/v2/components/duMetadata/duMetadata.tsx | 5 -----
1 file changed, 5 deletions(-)
diff --git
a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/components/duMetadata/duMetadata.tsx
b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/components/duMetadata/duMetadata.tsx
index f2c740f7db..e46282f185 100644
---
a/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/components/duMetadata/duMetadata.tsx
+++
b/hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/components/duMetadata/duMetadata.tsx
@@ -179,11 +179,6 @@ const DUMetadata: React.FC<MetadataProps> = ({
values.push(moment(objectInfo.modificationTime).format('ll LTS'));
}
- if (objectInfo?.quotaInBytes !== undefined && objectInfo?.quotaInBytes !==
-1) {
- keys.push('Quota In Bytes');
- values.push(byteToSize(objectInfo.quotaInBytes, 3));
- }
-
if (objectInfo?.quotaInNamespace !== undefined &&
objectInfo?.quotaInNamespace !== -1) {
keys.push('Quota In Namespace');
values.push(byteToSize(objectInfo.quotaInNamespace, 3));
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]