Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void afterJob() {
// log the simple metrics.
logger.info(" ---- FHIR resources exported in " + jobProcessingSeconds + " seconds ----");
logger.info("ResourceType \t| Exported");
int totalExportedFhirResources = 0;
long totalExportedFhirResources = 0;
List<String> resourceTypeSummaries = new ArrayList<>();
for (ExportCheckpointUserData partitionSummary : partitionSummaries) {
logger.info(partitionSummary.getResourceTypeSummary() + "\t|"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ public String generateResultExitStatus() {
*/
private static class ExitStatusVal {
int sequenceNum = 0;
int numberOfResources = 0;
int numberOfFailures = 0;
long numberOfResources = 0;
long numberOfFailures = 0;
@Override
public String toString() {
return numberOfResources + ":" + numberOfFailures;
Expand Down