[APPS-3154] Fix for numberOfField in response

This commit is contained in:
mohit-singh4
2024-12-17 15:56:47 +05:30
parent f731c9734c
commit cba3a10a0e

View File

@@ -191,8 +191,7 @@ public class NodeSizeDetailsServiceImpl implements NodeSizeDetailsService, Initi
} }
Date calculationDate = new Date(System.currentTimeMillis()); Date calculationDate = new Date(System.currentTimeMillis());
NodeSizeDetails nodeSizeDetails = new NodeSizeDetails(nodeRef.getId(), totalSizeFromFacet, calculationDate, NodeSizeDetails nodeSizeDetails = new NodeSizeDetails(nodeRef.getId(), totalSizeFromFacet, calculationDate,
results.getNodeRefs() (int) results.getNumberFound(),
.size(),
STATUS.COMPLETED, jobId); STATUS.COMPLETED, jobId);
return nodeSizeDetails; return nodeSizeDetails;
} }