Skip to content

Commit

Permalink
chore(irs): fixed irs/job path
Browse files Browse the repository at this point in the history
  • Loading branch information
saudkhan116 committed May 27, 2024
1 parent 5672878 commit aa295a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public Map<String, String> startJob(String processId, String globalAssetId, Stri
public Map<String, String> startJob(String processId, String globalAssetId, String searchId, String bpn) {
try {
this.checkEmptyVariables();
String url = this.irsEndpoint + "/" + this.irsJobPath;
String url = this.irsEndpoint + this.irsJobPath;
// Build the Job request for the IRS

String backendUrl = this.callbackUrl + "/" + processId + "/" + searchId; // Add process id and search id
Expand Down

0 comments on commit aa295a0

Please sign in to comment.