Skip to content

Commit

Permalink
retrieve the first client id;
Browse files Browse the repository at this point in the history
  • Loading branch information
ranjan-stha committed Nov 20, 2023
1 parent bc9d96d commit a754aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analysis_module/mockserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def process_mock_request(request: dict, request_type: str):

if code == 200:
resp = {
"client_id": [item["client_id"] for item in request["documents"]],
"client_id": request["documents"][0].get("client_id", ""),
"type": request_type,
"message": "Request has been successfully processed",
}
Expand Down

0 comments on commit a754aa0

Please sign in to comment.