From aafe30c068e76e89e30a1be005605b1e3edba908 Mon Sep 17 00:00:00 2001 From: "Sampath K. Settipalli" Date: Thu, 22 Aug 2024 13:19:22 -0500 Subject: [PATCH] PEPPER-1340 . fix os pe-cgs child participants proxy name issue --- .../dsm/service/phimanifest/PhiManifestService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pepper-apis/dsm-core/src/main/java/org/broadinstitute/dsm/service/phimanifest/PhiManifestService.java b/pepper-apis/dsm-core/src/main/java/org/broadinstitute/dsm/service/phimanifest/PhiManifestService.java index f5aa0980c9..88ed4a2014 100644 --- a/pepper-apis/dsm-core/src/main/java/org/broadinstitute/dsm/service/phimanifest/PhiManifestService.java +++ b/pepper-apis/dsm-core/src/main/java/org/broadinstitute/dsm/service/phimanifest/PhiManifestService.java @@ -91,7 +91,7 @@ public static PhiManifest generateDataForReport(@NonNull ElasticSearchParticipan if (proxies != null && !proxies.isEmpty()) { String proxyParticipantId = proxies.get(0); ElasticSearchParticipantDto proxyParticipant = ElasticSearchUtil.getParticipantESDataByParticipantId( - ddpInstanceDto.getEsParticipantIndex(), proxyParticipantId); + ddpInstanceDto.getEsUsersIndex(), proxyParticipantId); if (proxyParticipant.getProfile().isPresent()) { Profile proxyParticipantProfile = proxyParticipant.getProfile().get(); phiManifest.setProxyFirstName(proxyParticipantProfile.getFirstName());