Skip to content

Commit

Permalink
update some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hkryeung committed Oct 18, 2022
1 parent 58557b6 commit 32182c2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,14 +228,15 @@ private String postIngestProcess(String input)
// Set CMR related metadata into ECHOResetClientProvider
CMRLambdaRestClient elrc = buildLambdaRestClient(input);
setCMRMetadataToProvider(input);
// From this point, determine if we are going to process Footprint (fp) only
// From this point, determine if we are going to process Forge workflow
if(workflowType == WorkflowTypeEnum.ForgeWorkflow) {
Hashtable<String, String> returnVars = getMetaDataHash(elrc,input);
FootprintProcessor processor = new FootprintProcessor();
output = processor.process(input, returnVars.get("ummgStr"), region,
(new BigInteger(returnVars.get("revisionId"))).add(new BigInteger("1")).toString());
return output;
}
// From this point, determine if we are going to process TIG workflow
if(workflowType == WorkflowTypeEnum.ThumbnailImageWorkflow) {
Hashtable<String, String> returnVars = getMetaDataHash(elrc,input);
ImageProcessor processor = new ImageProcessor();
Expand Down

0 comments on commit 32182c2

Please sign in to comment.