Skip to content

Commit

Permalink
BAU: missing ip address from process-candidate-identity and check-coi…
Browse files Browse the repository at this point in the history
… lambdas (#2918)
  • Loading branch information
thebauSoftwire authored Jan 29, 2025
2 parents e9fac6e + 4f16381 commit 8981ec4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions deploy/journeyEngineStepFunction.asl.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@
"Resource": "${CheckCoiFunctionArn}",
"Parameters": {
"ipvSessionId.$": "$$.Execution.Input.ipvSessionId",
"ipAddress.$": "$$.Execution.Input.ipAddress",
"featureSet.$": "$$.Execution.Input.featureSet",
"lambdaInput.$": "$.lambdaInput"
},
Expand Down Expand Up @@ -309,6 +310,7 @@
"Resource": "${ProcessCandidateIdentityFunctionArn}",
"Parameters": {
"ipvSessionId.$": "$$.Execution.Input.ipvSessionId",
"ipAddress.$": "$$.Execution.Input.ipAddress",
"featureSet.$": "$$.Execution.Input.featureSet",
"lambdaInput.$": "$.lambdaInput"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public Map<String, Object> handleRequest(ProcessRequest request, Context context
IpvSessionItem ipvSessionItem = null;
try {
var ipvSessionId = RequestHelper.getIpvSessionId(request);
var ipAddress = RequestHelper.getIpAddress(request);
var ipAddress = request.getIpAddress();
var deviceInformation = request.getDeviceInformation();
var processIdentityType = RequestHelper.getProcessIdentityType(request);

Expand Down

0 comments on commit 8981ec4

Please sign in to comment.